Skip to content

Commit

Permalink
Create config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonBlanke committed Nov 20, 2021
1 parent 609b8f1 commit e949f8a
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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:
python -m pip install --upgrade pip
pip install packaging
pip install pytest
pip install pytest-cov
pip install coveralls
pip install .

pytest --cov=hyperactive/ -p no:warnings
name: Test

workflows:
main:
jobs:
- build-and-test

0 comments on commit e949f8a

Please sign in to comment.