Skip to content

Commit

Permalink
Add second test data file
Browse files Browse the repository at this point in the history
  • Loading branch information
thorbjoernl committed Sep 5, 2024
1 parent dc3c47f commit 9a459d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_CSVTimeSeriesReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ def test_altitude_filter_3(self):
) as ts:
self.assertEqual(len(ts.stations()), 1)

def test_relaltitude_filter_1(self):
def test_relaltitude_filter_emep_1(self):
engines = pyaro.list_timeseries_engines()
with engines["csv_timeseries"].open(
filename=self.elevation_file,
Expand Down Expand Up @@ -514,7 +514,7 @@ def test_relaltitude_filter_1(self):
# Since rtol = 0, no station should be included.
self.assertEqual(len(ts.stations()), 0)

def test_relaltitude_filter_2(self):
def test_relaltitude_filter_emep_2(self):
engines = pyaro.list_timeseries_engines()
with engines["csv_timeseries"].open(
filename=self.elevation_file,
Expand All @@ -537,7 +537,7 @@ def test_relaltitude_filter_2(self):
# At rdiff = 0.89, only the first station should be included.
self.assertEqual(len(ts.stations()), 1)

def test_relaltitude_filter_3(self):
def test_relaltitude_filter_emep_3(self):
engines = pyaro.list_timeseries_engines()
with engines["csv_timeseries"].open(
filename=self.elevation_file,
Expand Down
Binary file added tests/testdata/datadir_elevation/orography.nc
Binary file not shown.

0 comments on commit 9a459d9

Please sign in to comment.