Skip to content

Commit

Permalink
Update unittest for change in lib layout
Browse files Browse the repository at this point in the history
Apparently some files in /lib* can be links to /usr/lib on GitHub
Actions.
  • Loading branch information
remram44 committed Jun 17, 2021
1 parent 6dbcb0f commit f69cee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_reprozip.py
Expand Up @@ -138,7 +138,7 @@ def do_test(self, insert):
try:
files, inputs, outputs = get_files(conn)
files = set(fi for fi in files
if not fi.path.path.startswith(b'/lib'))
if not fi.path.path.startswith((b'/lib', b'/usr/lib')))
return files, inputs, outputs
finally:
conn.close()
Expand Down

0 comments on commit f69cee3

Please sign in to comment.