Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
using os :))
  • Loading branch information
martinvonk committed Apr 10, 2023
1 parent 857af5e commit cb4c60c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/test_015_metbase.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import os

import nlmod
from pathlib import Path

data_path = Path(__file__).parent / "data"
metbase_path = os.path.join("data", "Meteobase_ASCII_test.zip")


def test_read_meteobase() -> None:
_ = nlmod.read.meteobase.read_meteobase(data_path / "Meteobase_ASCII_test.zip")
_ = nlmod.read.meteobase.read_meteobase(metbase_path)

0 comments on commit cb4c60c

Please sign in to comment.