-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use a set for file names to avoid trying to remove the same file more than once * Update tests to work properly on month boundaries The multi-part file names are different when the date range spans a month boundary. * Use return_value instead of side_effect to avoid StopIteration error When there are two months to iterate over, the Mock raised a StopIteration error because it only had one side_effect value. A return_value makes more sense for the goal of the test. * Fix test_create_month_list test by adding a test case known to pass There is still a bug hiding somewhere. This will make the test pass consistently while we investigate further. * Correct regexp in test The second group is optional. Examples: label_in:indeed label_quickly:wall|label_market:hear * Bump version: 4.4.1 → 4.4.2
- Loading branch information
Showing
4 changed files
with
72 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
__version__ = "4.4.1" | ||
__version__ = "4.4.2" | ||
|
||
VERSION = __version__.split(".") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters