-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8732 from pymedusa/release/release-0.4.5
Release 0.4.5
- Loading branch information
Showing
19 changed files
with
195 additions
and
180 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
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 @@ | ||
from .core import contents, where | ||
|
||
__version__ = "2020.06.20" | ||
__version__ = "2020.11.08" |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -173,21 +173,20 @@ def test__parse_name(p): | |
'[email protected]', | ||
} | ||
}, | ||
{ # p1 - show-specific, legacy | ||
{ # p1 - show-specific, no emails legacy | ||
'show': 'Show Name', | ||
'EMAIL_LIST': [ | ||
'[email protected]', | ||
'[email protected]', | ||
], | ||
'mocks': [ | ||
('medusa.db.DBConnection.select', [{ | ||
'notify_list': '[email protected],[email protected]' | ||
'notify_list': None | ||
}]) | ||
], | ||
'expected': { | ||
'[email protected]', | ||
'[email protected]', | ||
'[email protected]' | ||
'[email protected]' | ||
} | ||
}, | ||
{ # p2 - show-specific, no emails | ||
|
@@ -198,7 +197,7 @@ def test__parse_name(p): | |
], | ||
'mocks': [ | ||
('medusa.db.DBConnection.select', [{ | ||
'notify_list': '' | ||
'notify_list': '{}' | ||
}]) | ||
], | ||
'expected': { | ||
|
@@ -214,7 +213,7 @@ def test__parse_name(p): | |
], | ||
'mocks': [ | ||
('medusa.db.DBConnection.select', [{ | ||
'notify_list': text_type({'emails': '[email protected],[email protected]'}) | ||
'notify_list': '{"emails": "[email protected],[email protected]"}' | ||
}]) | ||
], | ||
'expected': { | ||
|
Oops, something went wrong.