From eb0f21a559a332f198c16280732a35cc3efea5b5 Mon Sep 17 00:00:00 2001 From: Dylan Hercher Date: Fri, 23 Jul 2021 09:01:22 -0700 Subject: [PATCH] feat: promote 3.9 to main version (as it is in Cloudtops now for local testing) and add a small unit test for persoanl use (#292) --- noxfile.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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."""