dev into master #184

Merged
edraft merged 126 commits from dev into master 2026-01-16 16:25:39 +01:00
2 changed files with 35 additions and 2 deletions
Showing only changes of commit c18777656c - Show all commits

View File

@@ -24,3 +24,20 @@ jobs:
- name: Checking black - name: Checking black
run: python3.12 -m black src --check run: python3.12 -m black src --check
test:
runs-on: [ runner ]
container: git.sh-edraft.de/sh-edraft.de/act-runner:latest
steps:
- name: Clone Repository
uses: https://github.com/actions/checkout@v3
with:
token: ${{ secrets.CI_ACCESS_TOKEN }}
- name: Setting up Python 3.12
run: |
python3.12 -m pip install -r src/requirements-dev.txt
- name: Testing with pytest
run: |
python3.12 -m pytest

View File

@@ -1,2 +1,18 @@
[tool.black] [tool.black]
line-length = 120 line-length = 120
[tool.pytest.ini_options]
pythonpath = [
"src/api",
"src/application",
"src/auth",
"src/cli",
"src/core",
"src/database",
"src/dependency",
"src/graphql",
"src/mail",
"src/query",
"src/translation"
]
testpaths = ["test"]