Skip to content

Commit a8e01c1

Browse files
authored
Add pytests args
Not sure it is picking up the tox.ini
1 parent dfce27f commit a8e01c1

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,6 @@ jobs:
2929
run: |
3030
set -x
3131
python -m pip install --upgrade pip setuptools wheel
32-
1 conflicting file
33-
pythonpackage.yml
34-
.github/workflows/pythonpackage.yml
35-
.github/workflows/pythonpackage.yml
36-
1 conflict
37-
3832
python --version; git --version
3933
git submodule update --init --recursive
4034
git fetch --tags
@@ -61,19 +55,25 @@ pythonpackage.yml
6155
set -x
6256
pip install mypy
6357
mypy -p git
64-
58+
6559
- name: Test with pytest
6660
run: |
6761
set -x
6862
pip install -r requirements-dev.txt
69-
pytest
63+
pytest --cov --cov-report=term
7064
# pytest settings in tox.ini[pytest]
7165
continue-on-error: true
72-
66+
7367
- name: Documentation
7468
run: |
7569
set -x
7670
pip install -r doc/requirements.txt
7771
make -C doc html
7872
73+
# - name: Test with nose
74+
# run: |
75+
# set -x
76+
# pip install nose
77+
# nosetests -v --with-coverage
78+
7979

0 commit comments

Comments
 (0)