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 cb6b9e2 + 8ae5215 commit 4589e2aCopy full SHA for 4589e2a
.github/workflows/ci.yml
@@ -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
@@ -28,6 +28,3 @@ commands=flake8 *.py testing
28
29
[flake8]
30
ignore=N802
31
-
32
-[pytest]
33
-addopts=-v
0 commit comments