see if we can avoid sudo

This commit is contained in:
Miguel Jacq 2018-10-18 16:59:49 +11:00
parent fbc16f4d7b
commit e4e42849d6

View File

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