-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
CLN: Unify string storage fixture usage #50290
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -76,7 +76,7 @@ def test_dont_register_by_default(self): | |||
call = [sys.executable, "-c", code] | |||
assert subprocess.check_call(call) == 0 | |||
|
|||
@td.skip_if_no("matplotlib", min_version="3.1.3") | |||
@td.skip_if_no("matplotlib") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a td.skip_if_no_mpl
decorator. seems logical to use that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can get rid of them altogether, lets see if ci is green
@@ -111,7 +111,7 @@ def test_matplotlib_formatters(self): | |||
assert Timestamp not in units.registry | |||
assert Timestamp in units.registry | |||
|
|||
@td.skip_if_no("matplotlib", min_version="3.1.3") | |||
@td.skip_if_no("matplotlib") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same question about td.skip_if_no_mpl
.
Thanks @phofl. |
* CLN: Unify string storage fixture usage * Remove skips
No description provided.