Skip to content

Commit

Permalink
New test
Browse files Browse the repository at this point in the history
  • Loading branch information
b8raoult committed Nov 17, 2020
1 parent 6eb7959 commit 9e73eaf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_dataset_1():
load_dataset("sample-bufr-data")


@pytest.mark.skipif(sys.version_info < (3, 7), "Version 3.7 or greater needed")
@pytest.mark.skipif(sys.version_info < (3, 7), reason="Version 3.7 or greater needed")
def test_dataset_2():
dataset.sample_bufr_data()

Expand Down
2 changes: 1 addition & 1 deletion tests/test_sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ def test_source_1():
load_source("file", "docs/examples/test.grib")


@pytest.mark.skipif(sys.version_info < (3, 7), "Version 3.7 or greater needed")
@pytest.mark.skipif(sys.version_info < (3, 7), reason="Version 3.7 or greater needed")
def test_source_2():
source.file("docs/examples/test.grib")

0 comments on commit 9e73eaf

Please sign in to comment.