Skip to content

Commit ff32f4a

Browse files
committed
Include pytest on setup.cfg
1 parent 24f640f commit ff32f4a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
export PYTHONDONTWRITEBYTECODE=1
22

33
test:
4-
ASYNC_TEST_TIMEOUT=30.0 pytest -x --no-cov
4+
@pytest -x --no-cov
55

66
coverage:
7-
ASYNC_TEST_TIMEOUT=30.0 pytest -x --no-cov-on-fail --cov --cov-report=term
7+
@pytest -x --no-cov-on-fail --cov --cov-report=term
88

99
clean:
1010
rm -rf cover/

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[tool:pytest]
2+
env =
3+
ASYNC_TEST_TIMEOUT=30.0

0 commit comments

Comments
 (0)