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.
2 parents 3a58de7 + bdf52a7 commit 299fceaCopy full SHA for 299fcea
.github/workflows/ci.yml
@@ -75,8 +75,8 @@ jobs:
75
strategy:
76
matrix:
77
python:
78
- - short: 37
79
- dotted: 3.7
+ - short: 38
+ dotted: 3.8
80
steps:
81
- uses: actions/checkout@v2
82
- name: Set up Python ${{ matrix.python.dotted }}
@@ -90,3 +90,14 @@ jobs:
90
- name: Test
91
run: |
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
pytest.ini
@@ -1,2 +1,3 @@
1
[pytest]
2
+addopts = --verbose
3
filterwarnings = error
tox.ini
@@ -30,6 +30,3 @@ commands=flake8 *.py testing
30
31
[flake8]
32
ignore=N802
33
-
34
-[pytest]
35
-addopts=-v
0 commit comments