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 8c08d2b commit 5baa492Copy full SHA for 5baa492
.github/workflows/python_package.yaml
@@ -30,8 +30,7 @@ jobs:
30
run: |
31
python -m pip install --upgrade pip
32
pip install setuptools wheel
33
- pip install flake8 pytest==6.2.5 pytest-cov coveralls
34
- pip install --upgrade pluggy
+ pip install flake8 pytest pytest-cov coveralls
35
- name: Install package requirements
36
run: pip install -r requirements.txt
37
- name: Install package
@@ -44,7 +43,7 @@ jobs:
44
43
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
45
flake8 src tests setup.py --exclude=__init__.py --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
46
- name: Test with pytest
47
- run: python -m pytest --cov=src tests/
+ run: pytest --cov=src tests/
48
49
- name: Coveralls
50
env:
0 commit comments