Replace .format with python 3.6 f-strings in onionshare module

This commit is contained in:
Micah Lee 2019-10-20 10:15:16 -07:00
parent 1c60c51c5c
commit 16bcbbf55d
12 changed files with 70 additions and 128 deletions

View file

@ -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: