File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## Version 0.13.2
4+
5+ - fix: initial snapshot cleanup which used to mistakenly remove files with store:...
6+ filenames now removes files with store-... filenames
7+
38## Version 0.13.1
49
510- chore: changed the format of snapshot filenames from store:... to store-...
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " python-redux"
3- version = " 0.13.1 "
3+ version = " 0.13.2 "
44description = " Redux implementation for Python"
55authors = [" Sassan Haradji <sassanh@gmail.com>" ]
66license = " Apache-2.0"
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ def __init__(
3939 self .results_dir = path .parent / 'results' / file / test_id .split ('::' )[- 1 ][5 :]
4040 if self .results_dir .exists ():
4141 for file in self .results_dir .glob (
42- 'store: *' if override else 'store: *.mismatch.json' ,
42+ 'store- *' if override else 'store- *.mismatch.json' ,
4343 ):
4444 file .unlink () # pragma: no cover
4545 self .results_dir .mkdir (parents = True , exist_ok = True )
You can’t perform that action at this time.
0 commit comments