a5c8346eeb537ce53e44b33b904cbcff5aaf4a96
[functest.git] / .circleci / config.yml
1 ---
2 version: 2
3 jobs:
4   build:
5     docker:
6       - image: circleci/python:3.8
7     steps:
8       - checkout
9       - run:
10           name: Install dependendencies
11           command: sudo apt-get update && sudo apt-get install python2.7-dev enchant
12       - run:
13           name: Run tox
14           command: sudo pip install tox && tox
15       - store_artifacts:
16           path: api/build
17           destination: api
18       - store_artifacts:
19           path: docs/build
20           destination: docs
21       - store_artifacts:
22           path: cover
23           destination: cover
24       - store_artifacts:
25           path: coverage.xml
26           destination: coverage.xml