From d75beb95c8323a3e89dd89fcc54ac142de0ff371 Mon Sep 17 00:00:00 2001 From: Alec Rosenbaum Date: Mon, 24 Jun 2024 13:32:03 -0400 Subject: [PATCH] drop circleci config --- .circleci/config.yml | 52 -------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 39e9d1f..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,52 +0,0 @@ -version: 2 - -workflows: - version: 2 - workflow: - jobs: - - test-3.7 - - test-3.8 - - test-3.9 - - test-3.10 - - static-code-analysis - -defaults: &defaults - working_directory: ~/code - steps: - - checkout - - run: - name: Install Python dependencies - command: CFLAGS="-O0" pip install -r requirements_tests.txt - - run: - name: Test - command: pytest - -jobs: - test-3.7: - <<: *defaults - docker: - - image: cimg/python:3.7 - test-3.8: - <<: *defaults - docker: - - image: cimg/python:3.8 - test-3.9: - <<: *defaults - docker: - - image: cimg/python:3.9 - test-3.10: - <<: *defaults - docker: - - image: cimg/python:3.10 - static-code-analysis: - working_directory: ~/code - docker: - - image: cimg/python:3.8 - steps: - - checkout - - run: - name: Install dependencies - command: pip install lintlizard==0.18.0 "click<8.1" - - run: - name: LintLizard - command: lintlizard