From 8ae0009b563a9b5b10a799de300cf5038abf136d Mon Sep 17 00:00:00 2001 From: endolith Date: Thu, 4 Jul 2024 01:11:25 -0400 Subject: [PATCH] CircleCI is redundant with GitHub Actions --- .circleci/config.yml | 49 -------------------------------------------- README.md | 1 - 2 files changed, 50 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 8d9a686..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,49 +0,0 @@ -# Python CircleCI 2.1 configuration file -# -# Check https://circleci.com/docs/language-python/ for more details -# Also https://github.com/CircleCI-Public/sample-python-cfd/blob/main/.circleci/config.yml -# -version: 2.1 -jobs: - build: - docker: - # specify the version you desire here - # use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers` - - image: cimg/python:3.10 - - # Specify service dependencies here if necessary - # CircleCI maintains a library of pre-built images - # documented at https://circleci.com/docs/2.0/circleci-images/ - # - image: circleci/postgres:9.4 - parallelism: 4 - - working_directory: ~/repo - - steps: - - checkout - - # Download and cache dependencies - - run: - name: install dependencies - command: | - python3 -m venv venv - . venv/bin/activate - pip install -r requirements.txt - pip install . - - # run tests! - # this example uses Django's built-in test-runner - # other common Python testing frameworks include pytest and nose - # https://pytest.org - # https://nose.readthedocs.io - - run: - name: run tests - command: | - . venv/bin/activate - pytest -v - - - store_artifacts: - path: test-reports - destination: test-reports - # The resource_class feature allows configuring CPU and RAM resources for each job. Different resource classes are available for different executors. https://circleci.com/docs/2.0/configuration-reference/#resourceclass - resource_class: large diff --git a/README.md b/README.md index 7229caa..6da3f07 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ # Election Simulator 3000 -[![CircleCI](https://circleci.com/gh/endolith/elsim.svg?style=shield)](https://circleci.com/gh/endolith/elsim) [![Actions Status](https://github.com/endolith/elsim/actions/workflows/python-package.yml/badge.svg)](https://github.com/endolith/elsim/actions) [![codecov](https://codecov.io/gh/endolith/elsim/branch/master/graph/badge.svg?token=BZuePTP2dw)](https://codecov.io/gh/endolith/elsim)