From b9a7361d9c93dc22241ad6d2304e3f76906aa036 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Sun, 20 Oct 2019 10:15:16 -0700 Subject: Replace .format with python 3.6 f-strings in onionshare module --- .circleci/config.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to '.circleci') 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: -- cgit v1.2.3-54-g00ecf