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 1
1
# Changelog
2
2
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
+
3
8
## Version 0.13.1
4
9
5
10
- chore: changed the format of snapshot filenames from store:... to store-...
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " python-redux"
3
- version = " 0.13.1 "
3
+ version = " 0.13.2 "
4
4
description = " Redux implementation for Python"
5
5
authors = [
" Sassan Haradji <[email protected] >" ]
6
6
license = " Apache-2.0"
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ def __init__(
39
39
self .results_dir = path .parent / 'results' / file / test_id .split ('::' )[- 1 ][5 :]
40
40
if self .results_dir .exists ():
41
41
for file in self .results_dir .glob (
42
- 'store: *' if override else 'store: *.mismatch.json' ,
42
+ 'store- *' if override else 'store- *.mismatch.json' ,
43
43
):
44
44
file .unlink () # pragma: no cover
45
45
self .results_dir .mkdir (parents = True , exist_ok = True )
You can’t perform that action at this time.
0 commit comments