aboutsummaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2019-10-20 10:15:16 -0700
committerMicah Lee <micah@micahflee.com>2019-10-20 10:15:16 -0700
commitb9a7361d9c93dc22241ad6d2304e3f76906aa036 (patch)
tree4ce450473a2a59496585e457ca2b109626eb73b6 /.circleci
parent4dba1b0a31d747070cb8a48637564fbce93bccaa (diff)
downloadonionshare-b9a7361d9c93dc22241ad6d2304e3f76906aa036.tar.gz
onionshare-b9a7361d9c93dc22241ad6d2304e3f76906aa036.zip
Replace .format with python 3.6 f-strings in onionshare module
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml10
1 files changed, 2 insertions, 8 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 3a63d743..4555d3ca 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -7,14 +7,13 @@ workflows:
version: 2
test:
jobs:
- - test-3.5
- test-3.6
- test-3.7
jobs:
- test-3.5: &test-template
+ test-3.6: &test-template
docker:
- - image: circleci/python:3.5.6
+ - image: circleci/python:3.6.6
working_directory: ~/repo
@@ -44,11 +43,6 @@ jobs:
command: |
xvfb-run -s "-screen 0 1280x1024x24" pytest --rungui --cov=onionshare --cov=onionshare_gui --cov-report=term-missing -vvv --no-qt-log tests/
- test-3.6:
- <<: *test-template
- docker:
- - image: circleci/python:3.6.6
-
test-3.7:
<<: *test-template
docker: