1# Python CircleCI 2.0 configuration file 2# 3# Check https://circleci.com/docs/2.0/language-python/ for more details 4# 5version: 2 6jobs: 7 build: 8 docker: 9 - image: circleci/python:3 10 steps: 11 - checkout 12 - run: 13 name: install dependencies 14 command: | 15 sudo pip install tox 16 - run: 17 name: run tests 18 command: | 19 tox 20 - store_artifacts: 21 path: test-reports 22 destination: test-reports 23