Outdated need to install python2.7-dev in CircleCI
[functest-kubernetes.git] / .circleci / config.yml
1 ---
2 version: 2
3 jobs:
4   build:
5     docker:
6       - image: circleci/python:3.9
7     steps:
8       - checkout
9       - run:
10           name: Run tox
11           command: sudo pip install tox tox-pip-version && tox
12       - store_artifacts:
13           path: cover
14           destination: cover
15       - store_artifacts:
16           path: coverage.xml
17           destination: coverage.xml