From 489695df6efaedfbf08e8e758a03f52c9ce4e04c Mon Sep 17 00:00:00 2001 From: cosmicBboy Date: Fri, 30 Apr 2021 08:42:31 -0400 Subject: [PATCH] noxfile fixes --- noxfile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 02eac2c76..58af4bc4e 100644 --- a/noxfile.py +++ b/noxfile.py @@ -32,7 +32,7 @@ SOURCE_PATHS = PACKAGE, "tests", "noxfile.py" REQUIREMENT_PATH = "requirements-dev.txt" -ALWAYS_USE_PIP = ["furo", "mypy"] +ALWAYS_USE_PIP = ["furo"] CI_RUN = os.environ.get("CI") == "true" if CI_RUN: @@ -180,6 +180,7 @@ def install_extras( for spec in REQUIRES[extra].values() if spec not in ALWAYS_USE_PIP ] + session.install(*ALWAYS_USE_PIP) if ( isinstance(session.virtualenv, nox.virtualenv.CondaEnv) and not force_pip