diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index cd5d04f..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,22 +0,0 @@ -version: 2.1 - -orbs: - python: circleci/python@0.2.1 - -jobs: - build-and-test: - executor: python/default - steps: - - checkout - - python/load-cache - - python/install-deps - - python/save-cache - - run: - command: | - pipenv install - pipenv run pytest -vv -workflows: - main: - jobs: - - build-and-test -