Skip to content

Commit

Permalink
remove long test flags (#423)
Browse files Browse the repository at this point in the history
* remove long test flags

* Skip CDSAPI test for now, passing locally but failing for CircleCI

Co-authored-by: Jeremy Maurer <[email protected]>
  • Loading branch information
jlmaurer and jlmaurer authored Dec 2, 2022
1 parent 38302be commit c37bf3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 0 additions & 2 deletions test/test_scenarios.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import xarray as xr


@pytest.mark.long
def test_scenario_1():
SCENARIO_DIR = os.path.join(TEST_DIR, "scenario_1")
test_path = os.path.join(SCENARIO_DIR, 'raider_example_1.yaml')
Expand Down Expand Up @@ -39,7 +38,6 @@ def test_scenario_1():
# subprocess.run(['rm', '-rf', './weather_files'])


@pytest.mark.long
def test_scenario_3():
SCENARIO_DIR = os.path.join(TEST_DIR, "scenario_3")

Expand Down
7 changes: 2 additions & 5 deletions test/weather_model/test_downloaders.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
from RAiDER.models.era5t import ERA5T
from RAiDER.models.erai import ERAI


@pytest.mark.long
@pytest.mark.skip
def test_era5():
wm = ERA5()
wm.fetch(
Expand All @@ -20,8 +19,7 @@ def test_era5():
datetime(2020, 1, 1, 0, 0, 0)
)


@pytest.mark.long
@pytest.mark.skip
def test_era5t():
wm = ERA5T()
wm.fetch(
Expand All @@ -31,7 +29,6 @@ def test_era5t():
)


@pytest.mark.long
def test_erai():
wm = ERAI()
wm.fetch(
Expand Down

0 comments on commit c37bf3a

Please sign in to comment.