File tree Expand file tree Collapse file tree 3 files changed +19
-8
lines changed Expand file tree Collapse file tree 3 files changed +19
-8
lines changed Original file line number Diff line number Diff line change 75
75
strategy :
76
76
matrix :
77
77
python :
78
- - short : 37
79
- dotted : 3.7
78
+ - short : 38
79
+ dotted : 3.8
80
80
steps :
81
81
- uses : actions/checkout@v2
82
82
- name : Set up Python ${{ matrix.python.dotted }}
90
90
- name : Test
91
91
run : |
92
92
tox -v -e linting
93
+ all :
94
+ name : All
95
+ runs-on : ubuntu-latest
96
+ needs :
97
+ - test
98
+ - linting
99
+ steps :
100
+ - name : This
101
+ shell : python
102
+ run : |
103
+ import this
Original file line number Diff line number Diff line change 1
1
[pytest]
2
+ addopts = --verbose
2
3
filterwarnings = error
Original file line number Diff line number Diff line change @@ -15,10 +15,12 @@ deps=
15
15
qt5reactor: qt5reactor
16
16
qt5reactor: pytest-xvfb
17
17
qt5reactor: pyqt5
18
+ setenv =
19
+ defaultreactor: REACTOR = default
20
+ qt5reactor: REACTOR = qt5reactor
21
+ asyncioreactor: REACTOR = asyncio
18
22
commands =
19
- defaultreactor: pytest --reactor =default
20
- qt5reactor: pytest --reactor =qt5reactor
21
- asyncioreactor: pytest --reactor =asyncio
23
+ pytest --reactor ={env:REACTOR}
22
24
sitepackages =False
23
25
download =true
24
26
@@ -28,6 +30,3 @@ commands=flake8 *.py testing
28
30
29
31
[flake8]
30
32
ignore =N802
31
-
32
- [pytest]
33
- addopts =-v
You can’t perform that action at this time.
0 commit comments