8000 Update pythonpackage.yml · gitpython-developers/GitPython@ae75712 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ae75712

Browse files
authored
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

Lines changed: 4 additions & 9 deletions
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)
0