File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 53
53
coverage run -m pytest
54
54
coverage report
55
55
56
+ pytest-python2.7 :
57
+ runs-on : ubuntu-latest
58
+ container : coatldev/six:latest
59
+ steps :
60
+ - uses : actions/checkout@v4
61
+ - name : Display Python verison
62
+ run : python -c "import sys; print(sys.version)"
63
+ - name : Install dependencies
64
+ run : |
65
+ python -m pip install --upgrade pip
66
+ pip install -r requirements/pytest.txt
67
+ - name : Test with pytest
68
+ run : |
69
+ coverage run -m pytest
70
+ coverage report
71
+
56
72
flake8 :
57
73
runs-on : ubuntu-latest
58
74
steps :
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