From e0fc98bfb0e813b2bee8db9a040837caf9b8e157 Mon Sep 17 00:00:00 2001 From: tobi-wan-kenobi Date: Thu, 3 Dec 2020 20:48:06 +0100 Subject: [PATCH] [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. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 72e3881..e9708a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: