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