Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ae75712

Browse files
authoredJul 19, 2021
Update pythonpackage.yml
Rmv unneeded installs and testing flags (will use the flage from the config files)
1 parent 83af8e8 commit ae75712

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed
 

‎.github/workflows/pythonpackage.yml

+4-9
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [3.6, 3.7, 3.8, 3.9, "3.10.0-beta.3"]
18+
python-version: [3.6, 3.7, 3.8, 3.9, "3.10.0-beta.4"]
1919

2020
steps:
2121
- uses: actions/checkout@v2
@@ -46,26 +46,21 @@ jobs:
4646
- name: Lint with flake8
4747
run: |
4848
set -x
49-
pip install flake8
50-
# stop the build if there are Python syntax errors or undefined names
51-
flake8 --ignore=W293,E265,E266,W503,W504,E704,E731 --count --show-source --statistics
49+
flake8
5250
5351
- name: Check types with mypy
5452
run: |
5553
set -x
56-
pip install mypy
5754
mypy -p git
5855
5956
- name: Test with pytest
6057
run: |
6158
set -x
62-
pip install -r requirements-dev.txt
63-
pytest --cov --cov-report=term
64-
# pytest settings in tox.ini[pytest]
59+
pytest
6560
continue-on-error: false
6661

6762
- name: Documentation
6863
run: |
6964
set -x
7065
pip install -r doc/requirements.txt
71-
make -C doc html
66+
make -C doc html

0 commit comments

Comments
 (0)
Please sign in to comment.