Skip to content

chore: pip check on conda forge dependencies #723

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jun 4, 2024
5 changes: 5 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import re
import shutil
import warnings
import subprocess

import nox

Expand Down Expand Up @@ -614,6 +615,10 @@ def conda_test(session):
# for troubleshooting purposes.
session.run("mamba", "list")

subprocess.run(
["pip", "check"], check=True
) # Raise an exception if pip check fails

# Tests are limited to unit tests only, at this time.
session.run(
"py.test",
Expand Down