We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c4e3bf commit 4c5f930Copy full SHA for 4c5f930
1 file changed
.github/workflows/dca_tests.yml
@@ -27,13 +27,13 @@ jobs:
27
python -m pip install flake8 codecov pytest-cov sphinx_rtd_theme
28
- name: Lint with flake8
29
run: |
30
- flake8 src/dca tests
+ python -m flake8 src/dca tests
31
- name: Test with pytest
32
33
- pytest -sv --cov=./ tests
+ python -m pytest -sv --cov=./ tests
34
- name: Build docs
35
36
- sphinx-build -W -b html docs/source docs/build
+ python -m sphinx-build -W -b html docs/source docs/build
37
- name: Codecov
38
39
- codecov
+ python -m codecov
0 commit comments