Skip to content

Commit a7ddf8b

Browse files
committed
Merge branch 'pytest330'
2 parents 1ccafef + 578c986 commit a7ddf8b

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@
4444
+ Issue #13: Do not import pytest in setup.py to make it compatible
4545
with pipenv.
4646

47+
+ Issue #15: tests fail with pytest 3.3.0.
48+
4749
* Version 0.2 (2017-05-28)
4850

4951
** New features

tests/conftest.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55

66
@pytest.fixture
77
def ctestdir(testdir):
8+
testdir.makefile('.ini', pytest="""
9+
[pytest]
10+
console_output_style = classic
11+
""")
812
testdir.makeconftest("""
913
import sys
1014
if "pytest_dependency" not in sys.modules:

0 commit comments

Comments
 (0)