summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2019-01-15 21:54:39 -0800
committerMicah Lee <micah@micahflee.com>2019-01-15 21:54:39 -0800
commit769f256b53ed42b75dde1fdda5c949a36a3c967e (patch)
tree51a04ec6142a37b6e4170fda558dd7ba2a6ebefd
parentb39eb126c06c79adc18316a9af47536565f09327 (diff)
downloadonionshare-769f256b53ed42b75dde1fdda5c949a36a3c967e.tar.gz
onionshare-769f256b53ed42b75dde1fdda5c949a36a3c967e.zip
Make CircleCI run GUI tests
-rw-r--r--.circleci/config.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 70fa3b7c..22458d70 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -15,7 +15,7 @@ jobs:
test-3.5: &test-template
docker:
- image: circleci/python:3.5.6
-
+
working_directory: ~/repo
steps:
@@ -33,7 +33,7 @@ jobs:
# run tests!
- run:
name: run flake tests
- command: |
+ command: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
@@ -42,7 +42,7 @@ jobs:
- run:
name: run tests
command: |
- xvfb-run pytest --cov=onionshare --cov=onionshare_gui --cov-report=term-missing -vvv tests/
+ xvfb-run pytest --cov=onionshare --cov=onionshare_gui --cov-report=term-missing -vvv tests/ --rungui
test-3.6:
<<: *test-template