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 6a86de6 commit 4cbe387Copy full SHA for 4cbe387
setup.py
@@ -25,11 +25,11 @@ def finalize_options(self):
25
def run_tests(self):
26
# import here, cause outside the eggs aren't loaded
27
import pytest
28
- pytest_cmd = ["stream_chat/", "-v", "--cov=stream_chat/"]
+ pytest_cmd = ["stream_chat/", "-v"]
29
30
try:
31
import pytest_cov
32
- pytest_cmd += ["--cov-report=html", "--cov-report=annotate"]
+ pytest_cmd += ["--cov=stream_chat/", "--cov-report=html", "--cov-report=annotate"]
33
except ImportError:
34
pass
35
0 commit comments