aboutsummaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2020-03-22 12:35:26 -0700
committerMicah Lee <micah@micahflee.com>2020-03-22 12:35:26 -0700
commit360458372fa2c3b1ac74a8e505e140603a850b7b (patch)
treeb37122a894e1b99cdc748b83a46c6aee2d5f8ae9 /.circleci
parent3c6e0cbda10bed2f6a2a604c4421a7bdf3cdf4eb (diff)
downloadonionshare-360458372fa2c3b1ac74a8e505e140603a850b7b.tar.gz
onionshare-360458372fa2c3b1ac74a8e505e140603a850b7b.zip
Test with python 3.7 and 3.8, no longer 3.6
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml10
1 files 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