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 24f640f commit ff32f4aCopy full SHA for ff32f4a
Makefile
@@ -1,10 +1,10 @@
1
export PYTHONDONTWRITEBYTECODE=1
2
3
test:
4
- ASYNC_TEST_TIMEOUT=30.0 pytest -x --no-cov
+ @pytest -x --no-cov
5
6
coverage:
7
- ASYNC_TEST_TIMEOUT=30.0 pytest -x --no-cov-on-fail --cov --cov-report=term
+ @pytest -x --no-cov-on-fail --cov --cov-report=term
8
9
clean:
10
rm -rf cover/
setup.cfg
@@ -0,0 +1,3 @@
+[tool:pytest]
+env =
+ ASYNC_TEST_TIMEOUT=30.0
0 commit comments