File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 51
51
- name : Test with pytest
52
52
run : |
53
53
coverage run -m pytest
54
- coverage report
54
+ coverage report -m
55
+
56
+ pytest-python27 :
57
+ runs-on : ubuntu-latest
58
+ container : coatldev/six:latest
59
+ steps :
60
+ - uses : actions/checkout@v4
61
+ - name : Display Python verison
62
+ run : python2 -c "import sys; print(sys.version)"
63
+ - name : Install dependencies
64
+ run : |
65
+ python2 -m pip install --upgrade pip
66
+ pip2 install -r requirements/pytest.txt
67
+ - name : Test with pytest
68
+ run : |
69
+ coverage2 run -m pytest
70
+ coverage2 report -m
55
71
56
72
flake8 :
57
73
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ classifiers = [
14
14
' Intended Audience :: Information Technology' ,
15
15
' Intended Audience :: Science/Research' ,
16
16
' Programming Language :: Python' ,
17
+ ' Programming Language :: Python :: 2' ,
18
+ ' Programming Language :: Python :: 2.7' ,
17
19
' Programming Language :: Python :: 3' ,
18
20
' Programming Language :: Python :: 3.6' ,
19
21
' Programming Language :: Python :: 3.7' ,
You can’t perform that action at this time.
0 commit comments