Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Griesfeller committed Apr 15, 2024
1 parent 2149413 commit 33a1367
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/test_EbasPmfTimeSeriesReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ class TestAERONETTimeSeriesReader(unittest.TestCase):
"SI0008R.20171129230000.20210615130447.low_vol_sampler..pm25.32d.1d.SI01L_ARSO_pm25vz_2.SI01L_ARSO_ECOC_1.lev2.nas",
)

testdata_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), "testdata", "PMF_EBAS")
testdata_dir = os.path.join(
os.path.dirname(os.path.realpath(__file__)), "testdata", "PMF_EBAS"
)

def test_0engine(self):
self.assertIn(self.engine, pyaro.list_timeseries_engines())
Expand All @@ -32,6 +34,10 @@ def test_2open_directory(self):
self.assertGreaterEqual(len(ts.variables()), 3)
self.assertEqual(len(ts.stations()), 7)

# def test_3open_single_file(self):
# with pyaro.open_timeseries(self.engine, self.file, filters=[]) as ts:
# self.assertGreaterEqual(len(ts.variables()), 1)
# self.assertEqual(len(ts.stations()), 1)


if __name__ == "__main__":
Expand Down

0 comments on commit 33a1367

Please sign in to comment.