@@ -172,14 +172,15 @@ def get_active_network(namespace):
172
172
default = False ,
173
173
help = "Stream scenario output and delete container when stopped" ,
174
174
)
175
+ @click .option ("--source_dir" , type = click .Path (exists = True , file_okay = False , dir_okay = True ), required = False )
175
176
@click .argument ("additional_args" , nargs = - 1 , type = click .UNPROCESSED )
176
- def run (scenario_file : str , debug : bool , additional_args : tuple [str ]):
177
+ def run (scenario_file : str , source_dir , additional_args : tuple [str ]):
177
178
"""
178
179
Run a scenario from a file.
179
180
Pass `-- --help` to get individual scenario help
180
181
"""
181
182
scenario_path = Path (scenario_file ).resolve ()
182
- scenario_dir = scenario_path .parent
183
+ scenario_dir = scenario_path .parent if not source_dir else Path ( source_dir ). resolve ()
183
184
scenario_name = scenario_path .stem
184
185
185
186
if additional_args and ("--help" in additional_args or "-h" in additional_args ):
@@ -212,15 +213,24 @@ def run(scenario_file: str, debug: bool, additional_args: tuple[str]):
212
213
def filter (path ):
213
214
if any (needle in str (path ) for needle in [".pyc" , ".csv" , ".DS_Store" ]):
214
215
return False
215
- return any (
216
- needle in str (path ) for needle in ["commander.py" , "test_framework" , scenario_name ]
217
- )
218
-
216
+ if any (needle in str (path ) for needle in ["__init__.py" , "commander.py" , "test_framework" , scenario_path .name ]):
217
+ print (f"Including: { path } " )
218
+ return True
219
+ return False
220
+
221
+ # In case the scenario file is not in the root of the archive directory,
222
+ # we need to specify its relative path as a submodule
223
+ # First get the path of the file relative to the source directory
224
+ relative_path = scenario_path .relative_to (scenario_dir )
225
+ # Remove the '.py' extension
226
+ relative_name = relative_path .with_suffix ("" )
227
+ # Replace path separators with dots and pray the user included __init__.py
228
+ module_name = "." .join (relative_name .parts )
219
229
# Compile python archive
220
230
zipapp .create_archive (
221
231
source = scenario_dir ,
222
232
target = archive_buffer ,
223
- main = f"{ scenario_name } :main" ,
233
+ main = f"{ module_name } :main" ,
224
234
compressed = True ,
225
235
filter = filter ,
226
236
)
0 commit comments