From 62bfb823848d0c9a79e604345cd9db86150abebb Mon Sep 17 00:00:00 2001 From: Omkar Salpekar Date: Mon, 28 Nov 2022 15:53:41 -0800 Subject: [PATCH] [Nova] Remove Linux and Mac Unittests from CircleCI --- .circleci/config.yml | 24 ------------------------ .circleci/regenerate.py | 2 +- 2 files changed, 1 insertion(+), 25 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c231bdcc5..f20e46829 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -666,18 +666,6 @@ workflows: - build_docs unittest: jobs: - - unittest_linux: - name: unittest_linux_py3.7 - python_version: '3.7' - - unittest_linux: - name: unittest_linux_py3.8 - python_version: '3.8' - - unittest_linux: - name: unittest_linux_py3.9 - python_version: '3.9' - - unittest_linux: - name: unittest_linux_py3.10 - python_version: '3.10' - unittest_windows: name: unittest_windows_py3.7 python_version: '3.7' @@ -690,18 +678,6 @@ workflows: - unittest_windows: name: unittest_windows_py3.10 python_version: '3.10' - - unittest_macos: - name: unittest_macos_py3.7 - python_version: '3.7' - - unittest_macos: - name: unittest_macos_py3.8 - python_version: '3.8' - - unittest_macos: - name: unittest_macos_py3.9 - python_version: '3.9' - - unittest_macos: - name: unittest_macos_py3.10 - python_version: '3.10' nightly: jobs: - circleci_consistency: diff --git a/.circleci/regenerate.py b/.circleci/regenerate.py index df0422fb0..2b11b88cf 100755 --- a/.circleci/regenerate.py +++ b/.circleci/regenerate.py @@ -159,7 +159,7 @@ def indent(indentation, data_list): def unittest_workflows(indentation=6): w = [] - for os_type in ["linux", "windows", "macos"]: + for os_type in ["windows"]: for python_version in PYTHON_VERSIONS: w.append( {