From f2b0cfeceadd1ee5ebca3e7edb0031f255ef2a2a Mon Sep 17 00:00:00 2001 From: atalman Date: Mon, 27 Feb 2023 08:05:23 -0800 Subject: [PATCH] Turn of circleci 3.11 unit tests --- .circleci/config.yml | 3 --- .circleci/regenerate.py | 4 ++++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a3c2f4a4c6..dbae12c7b8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -678,9 +678,6 @@ workflows: - unittest_windows: name: unittest_windows_py3.10 python_version: '3.10' - - unittest_windows: - name: unittest_windows_py3.11 - python_version: '3.11' nightly: jobs: - circleci_consistency: diff --git a/.circleci/regenerate.py b/.circleci/regenerate.py index 08ba2112eb..4c8b3437b4 100755 --- a/.circleci/regenerate.py +++ b/.circleci/regenerate.py @@ -162,6 +162,10 @@ def unittest_workflows(indentation=6): w = [] for os_type in ["windows"]: for python_version in PYTHON_VERSIONS: + # Turn off unit tests for 3.11, unit test are not setup properly in circleci + if python_version == "3.11": + continue + w.append( { f"unittest_{os_type}": {