see if we can avoid sudo

This commit is contained in:
Miguel Jacq 2018-10-18 16:59:49 +11:00
parent d5881286be
commit eb63a045f3
No known key found for this signature in database
GPG Key ID: EEA4341C6D97A0B6

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: