Skip to content

Commit

Permalink
Pip install bmi-tester; use path for config file
Browse files Browse the repository at this point in the history
The latest version of *bmi-tester* (v0.5.9) isn't available yet
on conda-forge.
  • Loading branch information
mdpiper committed Mar 27, 2024
1 parent 3709cdc commit a4a076e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ def test(session: nox.Session) -> None:
@nox.session(name="test-bmi", python=PYTHON_VERSIONS, venv_backend="conda")
def test_bmi(session: nox.Session) -> None:
"""Test the Basic Model Interface."""
session.conda_install("bmi-tester", "pymt>=1.3")
session.install("bmi-tester>=0.5.9")
session.install(".")
session.run(
"bmi-test",
"bmi_topography:BmiTopography",
f"{PACKAGE}:BmiTopography",
"--config-file",
"./examples/config.yaml",
f"{ROOT}/examples/config.yaml",
"--root-dir",
"./examples",
"examples",
"-vvv",
)

Expand Down

0 comments on commit a4a076e

Please sign in to comment.