From e8728973461f6a45ab96b678e8babc4064f13253 Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Fri, 4 Dec 2020 17:08:44 +0700 Subject: [PATCH] .travis.yml: Pre-install libvirt-dev Also install libvirt-python<6.3 for Python 3.4 support. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7d1bbc0..ca3b78d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,10 +19,11 @@ addons: packages: libdbus-1-dev libgit2-dev + libvirt-dev taskwarrior install: - pip install -U coverage pytest pytest-mock freezegun - - pip install 'pygit2<1' || true + - pip install 'pygit2<1' 'libvirt-python<6.3' || true - pip install $(cat requirements/modules/*.txt | cut -d ' ' -f 1 | sort -u) script: - coverage run --source=. -m pytest tests -v