diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..cd5d04f --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,22 @@ +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 + diff --git a/Pipfile b/Pipfile index 0ac07b6..19612ab 100644 --- a/Pipfile +++ b/Pipfile @@ -8,6 +8,3 @@ pytest = "*" [packages] pytest = "*" - -[requires] -python_version = "3.8" \ No newline at end of file