diff --git a/noxfile.py b/noxfile.py index 843f1b87c..aedcb5336 100644 --- a/noxfile.py +++ b/noxfile.py @@ -27,7 +27,7 @@ # Python version used for linting. -DEFAULT_PYTHON_VERSION = "3.7" +DEFAULT_PYTHON_VERSION = "3.9" # Python versions used for testing. PYTHON_VERSIONS = ["3.7", "3.8", "3.9"] @@ -64,6 +64,11 @@ def unit(session): ) +@nox.session(python=DEFAULT_PYTHON_VERSION, venv_backend="venv") +def unit_small(session): + unit(session) + + @nox.session(python=PYTHON_VERSIONS, venv_backend="venv") def samples(session): """Run the snippets test suite."""