Skip to content

Commit bbf78ce

Browse files
committed
fix(ci): allow Python 3.9 unit tests to run (and be skipped)
1 parent 101047c commit bbf78ce

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

ci/run_single_test.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ case ${TEST_TYPE} in
7070
;;
7171
unit)
7272
case ${PY_VERSION} in
73+
"3.9")
74+
nox -s unit-3.9
75+
retval=$?
76+
;;
7377
"3.10")
7478
nox -s unit-3.10
7579
retval=$?

0 commit comments

Comments
 (0)