summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorDelirious Lettuce <delirious.lettuce@gmail.com>2017-05-30 23:25:42 -0600
committerDelirious Lettuce <delirious.lettuce@gmail.com>2017-07-04 12:24:38 -0600
commit348c1889aef6445012ae8979be89e8561c22537c (patch)
tree0e0a8c8739055afe44969ff5130ffda4da32654a /.travis.yml
parentc6b19a2864ba895c7f56916c17c772a19213f27f (diff)
downloadonionshare-348c1889aef6445012ae8979be89e8561c22537c.tar.gz
onionshare-348c1889aef6445012ae8979be89e8561c22537c.zip
Initial commit of previous changes, add coverage to travis
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index c4d0bfb2..a0a0c8bb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,7 +9,10 @@ python:
- "3.7-dev"
- "nightly"
# command to install dependencies
-before_install: "sudo apt-get update; sudo apt-get install -y python3-nose python3-flask python3-stem python3-pyqt5"
-install: ""
+# before_install: "sudo apt-get update; sudo apt-get install -y python3-nose python3-flask python3-stem python3-pyqt5"
+install:
+ - pip install Flask==0.12 stem==1.5.4 pytest-cov coveralls
# command to run tests
-script: nosetests3
+script: pytest test/ --cov test/
+after_success:
+ - coveralls