Skip to content

Commit 4c5f930

Browse files
committed
fix
1 parent 7c4e3bf commit 4c5f930

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/dca_tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ jobs:
2727
python -m pip install flake8 codecov pytest-cov sphinx_rtd_theme
2828
- name: Lint with flake8
2929
run: |
30-
flake8 src/dca tests
30+
python -m flake8 src/dca tests
3131
- name: Test with pytest
3232
run: |
33-
pytest -sv --cov=./ tests
33+
python -m pytest -sv --cov=./ tests
3434
- name: Build docs
3535
run: |
36-
sphinx-build -W -b html docs/source docs/build
36+
python -m sphinx-build -W -b html docs/source docs/build
3737
- name: Codecov
3838
run: |
39-
codecov
39+
python -m codecov

0 commit comments

Comments
 (0)