Skip to content

Commit 089395b

Browse files
committed
Fix #34: failing test with pytest 4.2.0 and newer.
1 parent 55c1618 commit 089395b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

doc/src/changelog.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
History of changes to pytest-dependency
22
=======================================
33

4+
dev (not yet released)
5+
Bug fixes and minor changes
6+
+ Issue #34: failing test with pytest 4.2.0 and newer.
7+
48
0.4 (2018-12-02)
59
Incompatible changes
610
+ Require pytest version 3.6.0 or newer. This implicitly drops

tests/test_03_skipmsgs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ def test_d():
3636
*::test_d SKIPPED
3737
""")
3838
result.stdout.fnmatch_lines_random("""
39-
SKIP * test_c depends on test_b
40-
SKIP * test_d depends on test_c
39+
SKIP* test_c depends on test_b
40+
SKIP* test_d depends on test_c
4141
""")

0 commit comments

Comments
 (0)