From 3937e73e7df61ade2fc6f45e7e5baa111e10fb7d Mon Sep 17 00:00:00 2001 From: tobi-wan-kenobi Date: Fri, 4 Dec 2020 18:53:52 +0100 Subject: [PATCH] [travis] hopefully fixed test build locally tested with a xenial image, and this should work. Unfortunately, cannot get the pygit2 to build against the provided libgit2-dev, so using the packaged version instead. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e9708a5..a9bb5fb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,9 +18,10 @@ addons: apt: packages: libdbus-1-dev + libffi-dev install: - pip install -U coverage pytest pytest-mock freezegun - - pip install $(cat requirements/modules/*.txt | cut -d ' ' -f 1 | sort -u|grep -v dbus-python|grep -v libvirt-python) + - pip install $(cat requirements/modules/*.txt | cut -d ' ' -f 1 | sort -u|grep -v dbus-python|grep -v libvirt-python|grep -v Pillow|grep -v pygit2) script: - coverage run --source=. -m pytest tests -v after_script: