.travis.yml: Install declared PyPI dependencies

This commit is contained in:
John Vandenberg 2020-12-03 08:02:41 +07:00
parent 659a0147da
commit 071a69b2d8

View file

@ -20,13 +20,7 @@ before_install:
install: install:
- sudo apt-get install python-dbus - sudo apt-get install python-dbus
- pip install -U coverage pytest pytest-mock freezegun - pip install -U coverage pytest pytest-mock freezegun
- pip install i3-py Pillow Babel DateTime python-dateutil - pip install $(cat requirements/modules/*.txt | cut -d ' ' -f 1 | sort -u)
- pip install docker feedparser==6.0.0b1 i3ipc
- pip install netifaces power
- pip install psutil pytz
- pip install requests simplejson
- pip install suntime
- pip install tzlocal
script: script:
- coverage run --source=. -m pytest tests -v - coverage run --source=. -m pytest tests -v
after_script: after_script: