Merge pull request #1 from gmgauthier/circleci-project-setup

Circleci project setup
This commit is contained in:
Greg Gauthier 2020-10-23 13:23:37 +01:00 committed by GitHub
commit 07105dab4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"