Test python 3.6 as well

This commit is contained in:
Micah Lee 2020-03-22 17:10:15 -07:00
parent bcaf572322
commit 49b4612a38

View file

@ -8,13 +8,14 @@ workflows:
version: 2 version: 2
test: test:
jobs: jobs:
- test-3.6
- test-3.7 - test-3.7
- test-3.8 - test-3.8
jobs: jobs:
test-3.7: &test-template test-3.6: &test-template
docker: docker:
- image: circleci/python:3.7-buster - image: circleci/python:3.6-buster
working_directory: ~/repo working_directory: ~/repo
@ -52,6 +53,11 @@ jobs:
command: | command: |
xvfb-run -s "-screen 0 1280x1024x24" poetry run pytest --rungui -vvv --no-qt-log tests/ xvfb-run -s "-screen 0 1280x1024x24" poetry run pytest --rungui -vvv --no-qt-log tests/
test-3.7:
<<: *test-template
docker:
- image: circleci/python:3.7-buster
test-3.8: test-3.8:
<<: *test-template <<: *test-template
docker: docker: