From 360458372fa2c3b1ac74a8e505e140603a850b7b Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Sun, 22 Mar 2020 12:35:26 -0700 Subject: [PATCH] Test with python 3.7 and 3.8, no longer 3.6 --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 18b7a5aa..e48400ea 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,13 +7,13 @@ workflows: version: 2 test: jobs: - - test-3.6 - test-3.7 + - test-3.8 jobs: - test-3.6: &test-template + test-3.7: &test-template docker: - - image: circleci/python:3.6-buster + - image: circleci/python:3.7-buster working_directory: ~/repo @@ -42,7 +42,7 @@ jobs: command: | xvfb-run -s "-screen 0 1280x1024x24" poetry run pytest --rungui -vvv --no-qt-log tests/ - test-3.7: + test-3.8: <<: *test-template docker: - - image: circleci/python:3.7-buster + - image: circleci/python:3.8-buster