From 85c7b111f590abd5f5578b4cc4d9301866fdffc6 Mon Sep 17 00:00:00 2001 From: Philip Meier Date: Mon, 27 Mar 2023 16:16:22 +0200 Subject: [PATCH] kill ONNX / extended unittest workflows on CircleCI --- .circleci/config.yml | 28 ---------------------------- .circleci/config.yml.in | 28 ---------------------------- 2 files changed, 56 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6d43ceeeb96..a250db096f2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -269,32 +269,6 @@ jobs: python .circleci/regenerate.py git diff --exit-code || (echo ".circleci/config.yml not in sync with config.yml.in! Run .circleci/regenerate.py to update config"; exit 1) - unittest_onnx: - docker: - - image: cimg/python:3.8 - steps: - - checkout - - install_torchvision - - pip_install: - args: onnx onnxruntime - descr: Install ONNX - - run_tests_selective: - file_or_dir: test/test_onnx.py - - unittest_extended: - docker: - - image: cimg/python:3.8 - resource_class: xlarge - steps: - - checkout - - download_model_weights - - install_torchvision - - run: - name: Enable extended tests - command: echo 'export PYTORCH_TEST_WITH_EXTENDED=1' >> $BASH_ENV - - run_tests_selective: - file_or_dir: test/test_extended_*.py - binary_linux_wheel: <<: *binary_common docker: @@ -1089,8 +1063,6 @@ workflows: unittest: jobs: - - unittest_onnx - - unittest_extended - unittest_windows_cpu: cu_version: cpu name: unittest_windows_cpu_py3.8 diff --git a/.circleci/config.yml.in b/.circleci/config.yml.in index 8dcc1dcbb15..eb6e0df4a7e 100644 --- a/.circleci/config.yml.in +++ b/.circleci/config.yml.in @@ -269,32 +269,6 @@ jobs: python .circleci/regenerate.py git diff --exit-code || (echo ".circleci/config.yml not in sync with config.yml.in! Run .circleci/regenerate.py to update config"; exit 1) - unittest_onnx: - docker: - - image: cimg/python:3.8 - steps: - - checkout - - install_torchvision - - pip_install: - args: onnx onnxruntime - descr: Install ONNX - - run_tests_selective: - file_or_dir: test/test_onnx.py - - unittest_extended: - docker: - - image: cimg/python:3.8 - resource_class: xlarge - steps: - - checkout - - download_model_weights - - install_torchvision - - run: - name: Enable extended tests - command: echo 'export PYTORCH_TEST_WITH_EXTENDED=1' >> $BASH_ENV - - run_tests_selective: - file_or_dir: test/test_extended_*.py - binary_linux_wheel: <<: *binary_common docker: @@ -883,8 +857,6 @@ workflows: unittest: jobs: - - unittest_onnx - - unittest_extended {{ unittest_workflows() }} cmake: