diff --git a/.circleci/config.yml b/.circleci/config.yml index afe74798be..ccb9766c7a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -674,9 +674,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}": {