Skip to content

Commit de8b269

Browse files
JulienBortolussiAdaliaiss
authored andcommitted
Always generate the build_space name for test
Make the name generator always use the generated name as build_space name when the and instance kind is test.
1 parent d0d831a commit de8b269

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/e3/anod/qualifiers_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ def build_space_name(self) -> str:
710710

711711
component_name = self.component
712712

713-
if component_name is not None:
713+
if component_name is not None and self.anod_instance.kind != "test":
714714
# A component name has been defined and must be used.
715715
return component_name
716716

0 commit comments

Comments
 (0)