You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
help="Runs the bootstrap script in a container, then executes specified integration tests.",
232
+
)
233
+
run_test_parser.add_argument(
234
+
"--installer-args",
235
+
action="append",
236
+
default=[],
237
+
help="Additional arguments to pass to bootstrap.py during the main installation. Can be used multiple times.",
238
+
)
239
+
run_test_parser.add_argument(
240
+
"--upgrade-from",
241
+
default="",
242
+
help="A version/tag (e.g., 'main', 'v0.1.0') to install first, simulating an upgrade to the current source code.",
243
+
)
244
+
run_test_parser.add_argument(
245
+
"--bootstrap-pip-spec",
246
+
default="/srv/src",
247
+
help="The pip specification used by the bootstrap script to install TLJH (for example: '--bootstrap-pip-spec=git+https://github.com/your-username/the-littlest-jupyterhub.git@branch-name'). Defaults to the local source code path.",
248
+
)
249
+
run_test_parser.add_argument(
250
+
"container_name",
251
+
help="An identifier for the container/test run (for example: 'basic-tests').",
252
+
)
253
+
run_test_parser.add_argument(
254
+
"test_files",
255
+
nargs="+",
256
+
help="A list of one or more test files under 'integration-tests/' to be executed.",
0 commit comments