From 7b7ffad77d8b0a7efdf923ec2ce07fec5c2bd0be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Israel=20Saeta=20P=C3=A9rez?= Date: Sun, 5 Aug 2018 17:41:12 +0200 Subject: [PATCH] Test circleci with python 3.6 instead of 3.5. CircleCI python:3.6 image contains 2.7 as well. --- .circleci/config.yml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 33185e4..581bf33 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,23 +1,15 @@ version: 2 jobs: - test_py35: + test: docker: - - image: circleci/python:3.5 + - image: circleci/python:3.6 steps: - checkout - run: pip install --user tox - - run: ~/.local/bin/tox -e py35 - test_py27: - docker: - - image: circleci/python:2.7 - steps: - - checkout - - run: pip install --user tox - - run: ~/.local/bin/tox -e py27 + - run: ~/.local/bin/tox workflows: version: 2 build_and_test: jobs: - - test_py35 - - test_py27 + - test