We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04aa5f3 commit 437a214Copy full SHA for 437a214
.github/workflows/test.yml
@@ -11,6 +11,11 @@ concurrency:
11
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
12
cancel-in-progress: true
13
14
+env:
15
+ FORCE_COLOR: "1"
16
+ PYTHONDEVMODE: "1" # -X dev
17
+ PYTHONWARNDEFAULTENCODING: "1" # -X warn_default_encoding
18
+
19
jobs:
20
tests:
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
- - name: Run tox
- run: |
- python -V
- tox -- -v --durations=25
44
+ - name: Test with pytest
45
+ run: python -m pytest --durations 25
46
47
lint:
48
0 commit comments