[go: up one dir, main page]

Skip to content
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

poll schumann + plots + tests #328

Merged
merged 4 commits into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
skip test cartopy version
  • Loading branch information
nestorcarmona committed Apr 18, 2024
commit cf7f88407fe5ceabe18d76dc5e1996aadf227490
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import pytest

if sys.version_info < (3, 8):
if sys.version_info < (3, 9):
pytest.skip("cartopy requires python3.9 or higher", allow_module_level=True)
if sys.platform.startswith("win"):
pytest.skip("pygrib does not install on windows", allow_module_level=True)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import numpy as np
import pytest

if sys.version_info < (3, 8):
if sys.version_info < (3, 9):
pytest.skip("cartopy requires python3.9 or higher", allow_module_level=True)
if sys.platform.startswith("win"):
pytest.skip("pygrib does not install on windows", allow_module_level=True)
Expand Down
Loading