Skip to content

Commit

Permalink
run nox tests with mamba install
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtanker committed Nov 16, 2023
1 parent 467a428 commit eecc95e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,12 @@ def pylint(session: nox.Session) -> None:
session.run("pylint", "invert4geom", *session.posargs)


@nox.session
@nox.session(venv_backend="mamba", python="3.11")
def tests(session: nox.Session) -> None:
"""
Run the unit and regular tests.
"""
session.conda_install("antarctic-plots")
session.install(".[test]")

# run tests with numba jit disabled to get real coverage
Expand Down

0 comments on commit eecc95e

Please sign in to comment.