aboutsummaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2020-03-22 17:10:15 -0700
committerMicah Lee <micah@micahflee.com>2020-03-22 17:10:15 -0700
commit785512218d6f38baecbd0e64784cfdeb59190c0a (patch)
tree1a645fc74149521afac25af586c4c12536f4bc78 /.circleci
parent290e6f5e7263e54d8b7432015aeb00bb7e23c552 (diff)
downloadonionshare-785512218d6f38baecbd0e64784cfdeb59190c0a.tar.gz
onionshare-785512218d6f38baecbd0e64784cfdeb59190c0a.zip
Test python 3.6 as well
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml10
1 files changed, 8 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 509bbfb4..8f8a51cc 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -8,13 +8,14 @@ workflows:
version: 2
test:
jobs:
+ - test-3.6
- test-3.7
- test-3.8
jobs:
- test-3.7: &test-template
+ test-3.6: &test-template
docker:
- - image: circleci/python:3.7-buster
+ - image: circleci/python:3.6-buster
working_directory: ~/repo
@@ -52,6 +53,11 @@ jobs:
command: |
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-template
docker: