geneva/.circleci/config.yml

22 lines
388 B
YAML
Raw Normal View History

2020-03-13 04:12:36 +01:00
version: 2.1
orbs:
2020-03-13 13:15:25 +01:00
python: circleci/windows@2.4.0
2020-03-13 04:12:36 +01:00
jobs:
build-and-test:
2020-03-13 13:23:09 +01:00
executor: windows/default
2020-03-13 04:12:36 +01:00
steps:
- checkout
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:36:46 +01:00
command: python -m pytest -sv tests/ --tb=short
2020-03-13 04:12:36 +01:00
name: Test
workflows:
main:
jobs:
- build-and-test