From 8270d83f3dca44107b638c861137f6245d798634 Mon Sep 17 00:00:00 2001 From: Talmaj Marinc Date: Sun, 15 Sep 2024 22:30:24 +0200 Subject: [PATCH] Remove circleci, update shield icon --- .circleci/config.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index ed2c4f1..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,32 +0,0 @@ -version: 2.1 - -orbs: - python: circleci/python@0.2.1 - -jobs: - test: - docker: - - image: fkrull/multi-python - steps: - - checkout - - python/load-cache - - restore_cache: - keys: - - tox-cache - - run: - command: bash download_fixtures.sh && tox - name: Test onnx2pytorch - no_output_timeout: 30m - - python/save-cache - - save_cache: - key: tox-cache - paths: - - .tox/ - - fixtures/ - - store_artifacts: - path: htmlcov - -workflows: - main: - jobs: - - test