Added changelog items.

This commit is contained in:
turturica 2018-08-24 15:51:42 -07:00
parent e3df1031ca
commit dce8df45d5
3 changed files with 5 additions and 2 deletions

View File

@ -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.

View File

@ -0,0 +1 @@
Fixes double collection of tests within packages when the filename starts with a capital letter.

View File

@ -4007,7 +4007,7 @@ class TestScopeOrdering(object):
def fix():
values.append("pre-sub1")
yield values
values.pop()
assert values.pop() == "pre-sub1"
"""
)
)
@ -4031,7 +4031,7 @@ class TestScopeOrdering(object):
def fix():
values.append("pre-sub2")
yield values
values.pop()
assert values.pop() == "pre-sub2"
"""
)
)