We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 528e44d commit f06f38dCopy full SHA for f06f38d
.github/workflows/pytest.yml
@@ -25,7 +25,9 @@ jobs:
25
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
26
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
27
28
- - name: Create .env file for testing
+ - name: Test with Pytest
29
+ env:
30
+ PYTHONPATH: ${{ github.workspace }}/backend/src
31
run: |
32
cat <<EOF > .env
33
DOMAIN=localhost
@@ -52,9 +54,4 @@ jobs:
52
54
POSTGRES_PASSWORD=testpassword
53
55
EOF
56
cd ../..
-
- - name: Test with Pytest
57
- env:
58
- PYTHONPATH: ${{ github.workspace }}/backend/src
59
- run: |
60
pytest --config-file=backend/pyproject.toml backend/tests
0 commit comments