[travis] temporarily exclude dbus and libvirt from requirements

since they cause issues in the automated tests, do not install the dbus
and libvirt python libraries.
This commit is contained in:
tobi-wan-kenobi 2020-12-03 20:48:06 +01:00
parent 47a640e610
commit e0fc98bfb0

View file

@ -20,7 +20,7 @@ addons:
libdbus-1-dev
install:
- pip install -U coverage pytest pytest-mock freezegun
- pip install $(cat requirements/modules/*.txt | cut -d ' ' -f 1 | sort -u)
- pip install $(cat requirements/modules/*.txt | cut -d ' ' -f 1 | sort -u|grep -v dbus-python|grep -v libvirt-python)
script:
- coverage run --source=. -m pytest tests -v
after_script: