File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,11 @@ concurrency:
11
11
group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
12
12
cancel-in-progress : true
13
13
14
+ env :
15
+ FORCE_COLOR : " 1"
16
+ PYTHONDEVMODE : " 1" # -X dev
17
+ PYTHONWARNDEFAULTENCODING : " 1" # -X warn_default_encoding
18
+
14
19
jobs :
15
20
tests :
16
21
runs-on : ubuntu-latest
@@ -33,12 +38,11 @@ jobs:
33
38
- name : Install dependencies
34
39
run : |
35
40
python -m pip install --upgrade pip
36
- python -m pip install --upgrade tox
41
+ python -m pip install --upgrade pytest
42
+ python -m pip install --upgrade Sphinx @ git+https://github.com/sphinx-doc/sphinx
37
43
38
- - name : Run tox
39
- run : |
40
- python -V
41
- tox -- -v --durations=25
44
+ - name : Test with pytest
45
+ run : python -m pytest --durations 25
42
46
43
47
lint :
44
48
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments