From 32ea382400b9a28c1103e1d38fbb67d1a1b3b3b4 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Fri, 11 Dec 2020 14:54:28 -0500 Subject: [PATCH] tests: enable unit tests for Python 3.9 --- noxfile.py | 2 +- synth.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/noxfile.py b/noxfile.py index a4bcedd7..1737a22d 100644 --- a/noxfile.py +++ b/noxfile.py @@ -28,7 +28,7 @@ DEFAULT_PYTHON_VERSION = "3.8" SYSTEM_TEST_PYTHON_VERSIONS = ["3.8"] -UNIT_TEST_PYTHON_VERSIONS = ["3.6", "3.7", "3.8"] +UNIT_TEST_PYTHON_VERSIONS = ["3.6", "3.7", "3.8", "3.9"] @nox.session(python=DEFAULT_PYTHON_VERSION) diff --git a/synth.py b/synth.py index 5aa94d25..96709221 100644 --- a/synth.py +++ b/synth.py @@ -79,7 +79,7 @@ templated_files = common.py_library( unit_cov_level=97, cov_level=97, - unit_test_python_versions=["3.6", "3.7", "3.8"], + unit_test_python_versions=["3.6", "3.7", "3.8", "3.9"], system_test_python_versions=["3.8"], ) s.move(templated_files, excludes=["docs/multiprocessing.rst", ".coveragerc"])