We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06642c8 commit 57c1513Copy full SHA for 57c1513
1 file changed
tests/pulp_test.py
@@ -103,4 +103,5 @@ def test_pulp_import_export_volume_mounts(server, container, pulp_import_export_
103
destinations = [mount['Destination'] for mount in mounts]
104
105
for path in import_paths + export_paths:
106
- assert path in destinations, f"expected {path} to be mounted as a volume in {container}"
+ mounted = path in destinations or any(path.startswith(d + '/') for d in destinations)
107
+ assert mounted, f"expected {path} to be mounted as a volume in {container}"
0 commit comments