We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d2de296 + 7b7ffad commit c5e4ae1Copy full SHA for c5e4ae1
.circleci/config.yml
@@ -1,23 +1,15 @@
1
version: 2
2
jobs:
3
- test_py35:
+ test:
4
docker:
5
- - image: circleci/python:3.5
+ - image: circleci/python:3.6
6
steps:
7
- checkout
8
- run: pip install --user tox
9
- - run: ~/.local/bin/tox -e py35
10
- test_py27:
11
- docker:
12
- - image: circleci/python:2.7
13
- steps:
14
- - checkout
15
- - run: pip install --user tox
16
- - run: ~/.local/bin/tox -e py27
+ - run: ~/.local/bin/tox
17
18
workflows:
19
20
build_and_test:
21
22
- - test_py35
23
- - test_py27
+ - test
0 commit comments