Circleci project setup #1

Merged
gmgauthier merged 10 commits from circleci-project-setup into master 2020-10-23 12:23:37 +00:00
2 changed files with 22 additions and 3 deletions

22
.circleci/config.yml Normal file
View File

@ -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

View File

@ -8,6 +8,3 @@ pytest = "*"
[packages]
pytest = "*"
[requires]
python_version = "3.8"