aboutsummaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorMiguel Jacq <mig@mig5.net>2018-10-18 16:59:49 +1100
committerMiguel Jacq <mig@mig5.net>2018-10-18 16:59:49 +1100
commiteb63a045f3ac7ca11b3321965b892dda2fdc5a4b (patch)
tree1cac4ac6203685f849b7a71c1c5ca47bc4cccb48 /.circleci
parentd5881286be301ad631418a296227df60dc6e4bbc (diff)
downloadonionshare-eb63a045f3ac7ca11b3321965b892dda2fdc5a4b.tar.gz
onionshare-eb63a045f3ac7ca11b3321965b892dda2fdc5a4b.zip
see if we can avoid sudo
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 2585995a..14a4a8c7 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -18,10 +18,10 @@ jobs:
- run:
name: install dependencies
command: |
- sudo apt-get update && sudo apt-get install python3-pyqt5 python3-pip
- sudo pip3 install -r install/requirements.txt
- sudo pip3 install -r install/requirements-tests.txt
- sudo pip3 install pytest-cov flake8
+ apt-get update && apt-get install python3-pyqt5 python3-pip
+ pip3 install -r install/requirements.txt
+ pip3 install -r install/requirements-tests.txt
+ pip3 install pytest-cov flake8
# run tests!
- run: