Added changelog items.
This commit is contained in:
parent
e3df1031ca
commit
dce8df45d5
|
@ -0,0 +1,2 @@
|
||||||
|
Fixed an issue where teardown of fixtures of consecutive sub-packages were executed once, at the end of the outer
|
||||||
|
package.
|
|
@ -0,0 +1 @@
|
||||||
|
Fixes double collection of tests within packages when the filename starts with a capital letter.
|
|
@ -4007,7 +4007,7 @@ class TestScopeOrdering(object):
|
||||||
def fix():
|
def fix():
|
||||||
values.append("pre-sub1")
|
values.append("pre-sub1")
|
||||||
yield values
|
yield values
|
||||||
values.pop()
|
assert values.pop() == "pre-sub1"
|
||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
@ -4031,7 +4031,7 @@ class TestScopeOrdering(object):
|
||||||
def fix():
|
def fix():
|
||||||
values.append("pre-sub2")
|
values.append("pre-sub2")
|
||||||
yield values
|
yield values
|
||||||
values.pop()
|
assert values.pop() == "pre-sub2"
|
||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue