Skip to content

Commit

Permalink
pip-install ecmvflibs if on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mcflugen committed Oct 10, 2024
1 parent cff5d24 commit 8ff3b8b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import pathlib
import shutil
import sys
from itertools import chain

import nox
Expand All @@ -11,6 +12,8 @@
def test_with_pip(session: nox.Session) -> None:
"""Run the tests."""
session.install("-r", "requirements-testing.in")
if sys.platform.startswith("win"):
session.install("ecmwflibs")
session.install(".")

session.run("pytest", "--cov=src/bmi_wavewatch3", "-vvv")
Expand Down

0 comments on commit 8ff3b8b

Please sign in to comment.