Skip to content

Commit

Permalink
Try to fix Travis CI test failure*
Browse files Browse the repository at this point in the history
From https://travis-ci.org/xolox/python-deb-pkg-tools/builds/345842127:

dpkg-shlibdeps: error: no dependency information found
for /opt/python/2.7.14/lib/libpython2.7.so.1.0 (used
by /home/travis/virtualenv/python2.7.14/bin/python)
  • Loading branch information
xolox committed Feb 25, 2018
1 parent a87ed3e commit 1ea7a18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deb_pkg_tools/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ def test_find_object_files(self):

def test_find_system_dependencies(self):
"""Test the :func:`deb_pkg_tools.package.find_system_dependencies()` function."""
dependencies = find_system_dependencies([sys.executable])
dependencies = find_system_dependencies(['/usr/bin/python'])
assert len(dependencies) >= 1
assert any(re.match(r'^libc\d+\b', d) for d in dependencies)

Expand Down

0 comments on commit 1ea7a18

Please sign in to comment.