We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e2f067 commit a3de9f3Copy full SHA for a3de9f3
.github/workflows/run_tests.yml
@@ -67,12 +67,12 @@ jobs:
67
run: poetry install --no-root --with dev
68
69
- name: flake it
70
- run: flake8 .
+ run: python -m flake8 .
71
72
- name: run tests
73
run: |
74
- coverage run -m pytest --create-db
75
- coverage xml -o _shtrove_coverage.xml
+ python -m coverage run -m pytest --create-db
+ python -m coverage xml -o _shtrove_coverage.xml
76
env:
77
DATABASE_PASSWORD: postgres
78
ELASTICSEARCH8_URL: http://localhost:9208/
0 commit comments