We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52a91a3 commit c73a1d1Copy full SHA for c73a1d1
test/test_units.py
@@ -12,7 +12,7 @@ def test_units(container):
12
"""Various units tests
13
Add a py file in the {image}/test/units dir and it will be automatically tested
14
"""
15
- short_image_name = container.image_name[container.image_name.find('/') + 1:]
+ short_image_name = container.image_name[container.image_name.rfind('/') + 1:]
16
host_data_dir = os.path.join(THIS_DIR, f"../{short_image_name}/test/units")
17
LOGGER.info(f"Searching for units tests in {host_data_dir}")
18
cont_data_dir = "/home/jovyan/data"
0 commit comments