blob: ee82509a7e89dc7ca63e4953f70d50f02bb6b050 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---
version: 2
jobs:
build:
docker:
- image: circleci/python:3.6.9
steps:
- checkout
- run:
name: Install dependendencies
command: sudo apt-get install python2.7-dev
- run:
name: Run tox
command: sudo pip install tox && tox
- store_artifacts:
path: cover
destination: cover
- store_artifacts:
path: coverage.xml
destination: coverage.xml
|