Skip to content

Commit e9cbe61

Browse files
committed
Test leo provider only
1 parent e76ac94 commit e9cbe61

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
run: |
2929
python -m pip install --upgrade pip
3030
python -m pip install .
31-
python -m pip install flake8 pytest
31+
python -m pip install flake8
3232
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3333
- name: Lint with flake8
3434
run: |
3535
# stop the build if there are Python syntax errors or undefined names
3636
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
3737
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
3838
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
39-
- name: Test with pytest
39+
- name: Test with Unittest
4040
run: |
41-
pytest
41+
python -m unittest discover -s tests -p 'test_leo.py' -f -v

0 commit comments

Comments
 (0)