aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci/config.yml
blob: 741a7d061aeba31d02a6f170050681f9af23d8d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
version: 2
jobs:
  build:
    docker:
      - image: circleci/python:3.8
    steps:
      - checkout
      - run:
          name: Run tox
          command: sudo pip install tox tox-pip-version && tox
      - store_artifacts:
          path: cover
          destination: cover
      - store_artifacts:
          path: coverage.xml
          destination: coverage.xml