@@ -697,7 +697,7 @@ def pre_fetch_hook_check_installation_path(self, *args, **kwargs):
697697 strict_eessi_installation = (
698698 bool (re .search (EESSI_INSTALLATION_REGEX , self .installdir )) or
699699 self .installdir .startswith (HOST_INJECTIONS_LOCATION ))
700- if strict_eessi_installation :
700+ if strict_eessi_installation and not os . getenv ( "EESSI_OVERRIDE_STRICT_INSTALLPATH_CHECK" ) :
701701 dependency_names = self .cfg .dependency_names ()
702702 if self .cfg .name in accelerator_deps or any (dep in dependency_names for dep in accelerator_deps ):
703703 # Make sure the path is an accelerator location
@@ -1089,7 +1089,7 @@ def pre_configure_hook_graphviz(self, *args, **kwargs):
10891089 # Replace --with-ltdl-lib and --with-zlibdir options defined in the EC to point to compat layer
10901090 lib_dir = os .path .join (usr_dir , 'lib64' )
10911091 new_items = set ()
1092- # Add to the new_items all the old items except the `--with-ltdl-lib` and `--with-ltdl-lib` for
1092+ # Add to the new_items all the old items except the `--with-ltdl-lib` and `--with-ltdl-lib` for
10931093 # which we fix the lib dir to lib64 instead of lib
10941094 for item in old_items :
10951095 if item .startswith ('--with-ltdl-lib' ):
@@ -1483,7 +1483,7 @@ def pre_test_hook_ignore_failing_tests_OpenBabel_a64fx(self, *args, **kwargs):
14831483 Pre-test hook for OpenBabel: skip timeout tests for OpenBabel 3.1.1 on aarch64/a64fx
14841484 see https://github.com/EESSI/software-layer/pull/1332#issuecomment-3877255228
14851485 the `testroundtrip.py` test reads and writes tens of thousands of small files.
1486- The test works fine when manually ran with EESSI-extend either directly or inside an eessi_container, but
1486+ The test works fine when manually ran with EESSI-extend either directly or inside an eessi_container, but
14871487 consistently fails with the bot
14881488 """
14891489 cpu_target = get_eessi_envvar ('EESSI_SOFTWARE_SUBDIR' )
0 commit comments