Skip to content

Commit 678d208

Browse files
committed
Get github tests working
1 parent e598cfd commit 678d208

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/python-package.yml

+3-8
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,16 @@ jobs:
2020

2121
steps:
2222
- uses: actions/checkout@v4
23+
with:
24+
fetch-depth: 0
2325
- name: Set up Python ${{ matrix.python-version }}
2426
uses: actions/setup-python@v3
2527
with:
2628
python-version: ${{ matrix.python-version }}
2729
- name: Install dependencies
2830
run: |
2931
python -m pip install --upgrade pip
30-
python -m pip install flake8 pytest
3132
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
32-
- name: Lint with flake8
33-
run: |
34-
# stop the build if there are Python syntax errors or undefined names
35-
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
36-
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
37-
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3833
- name: Test with pytest
3934
run: |
40-
pytest
35+
python3 -m unittest discover -v

0 commit comments

Comments
 (0)