diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 0677698..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,31 +0,0 @@ -version: 2 -jobs: - build: - working_directory: ~/hawkpost - docker: - - image: cimg/python:3.9.16 - environment: - PIPENV_VENV_IN_PROJECT: true - DB_HOST: localhost - DB_USER: postgres - - image: cimg/postgres:16.4 - environment: - POSTGRES_USER: postgres - POSTGRES_PASSWORD: postgres - POSTGRES_DB: hawkpost_dev - steps: - - checkout - - run: - command: | - pipenv install --dev - - run: - command: | - pipenv run python manage.py collectstatic --no-input - - run: - command: | - pipenv run python manage.py test - - store_test_results: - path: test-results - - store_artifacts: - path: test-results - destination: tr1