geneva/.circleci/config.yml

23 lines
421 B
YAML
Raw Normal View History

2020-03-13 04:12:36 +01:00
version: 2.1
orbs:
python: circleci/python@0.2.1
jobs:
build-and-test:
executor: python/default
steps:
- checkout
- python/load-cache
2020-03-13 04:32:48 +01:00
- run:
2020-03-13 04:32:10 +01:00
command: pip install --user -r requirements_windows.txt
name: Pip install
2020-03-13 04:12:36 +01:00
- run:
2020-03-13 04:34:32 +01:00
command: python -m pytest --cov=./ -sv tests/ --tb=short
2020-03-13 04:12:36 +01:00
name: Test
workflows:
main:
jobs:
- build-and-test