File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 29
29
run : |
30
30
set -x
31
31
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
-
38
32
python --version; git --version
39
33
git submodule update --init --recursive
40
34
git fetch --tags
@@ -61,19 +55,25 @@ pythonpackage.yml
61
55
set -x
62
56
pip install mypy
63
57
mypy -p git
64
-
58
+
65
59
- name : Test with pytest
66
60
run : |
67
61
set -x
68
62
pip install -r requirements-dev.txt
69
- pytest
63
+ pytest --cov --cov-report=term
70
64
# pytest settings in tox.ini[pytest]
71
65
continue-on-error : true
72
-
66
+
73
67
- name : Documentation
74
68
run : |
75
69
set -x
76
70
pip install -r doc/requirements.txt
77
71
make -C doc html
78
72
73
+ # - name: Test with nose
74
+ # run: |
75
+ # set -x
76
+ # pip install nose
77
+ # nosetests -v --with-coverage
78
+
79
79
You can’t perform that action at this time.
0 commit comments