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 1ccafef + 578c986 commit a7ddf8bCopy full SHA for a7ddf8b
CHANGES
@@ -44,6 +44,8 @@
44
+ Issue #13: Do not import pytest in setup.py to make it compatible
45
with pipenv.
46
47
+ + Issue #15: tests fail with pytest 3.3.0.
48
+
49
* Version 0.2 (2017-05-28)
50
51
** New features
tests/conftest.py
@@ -5,6 +5,10 @@
5
6
@pytest.fixture
7
def ctestdir(testdir):
8
+ testdir.makefile('.ini', pytest="""
9
+ [pytest]
10
+ console_output_style = classic
11
+ """)
12
testdir.makeconftest("""
13
import sys
14
if "pytest_dependency" not in sys.modules:
0 commit comments