We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a09dab commit 17abc60Copy full SHA for 17abc60
Makefile
@@ -21,7 +21,7 @@ lint:
21
pylint --recursive=y --errors-only kafka test
22
23
test: build-integration
24
- pytest --durations=10 $(PYTESTS)
+ pytest $(PYTESTS)
25
26
cov-local: build-integration
27
pytest --pylint --pylint-rcfile=pylint.rc --pylint-error-types=EF --cov=kafka \
pytest.ini
@@ -1,3 +1,4 @@
1
[pytest]
2
log_format = %(created)f %(filename)-23s %(threadName)s %(message)s
3
log_level = DEBUG
4
+addopts = --durations=10 --timeout=300
requirements-dev.txt
@@ -10,6 +10,7 @@ pytest
10
pytest-cov
11
pytest-mock
12
pytest-pylint
13
+pytest-timeout
14
python-snappy
15
Sphinx
16
sphinx-rtd-theme
0 commit comments