File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ def pytest_addoption(parser: Parser) -> None:
4848 upgrade_group = parser .getgroup (name = "Upgrade options" )
4949 must_gather_group = parser .getgroup (name = "MustGather" )
5050 cluster_sanity_group = parser .getgroup (name = "ClusterSanity" )
51+ model_registry_group = parser .getgroup (name = "Model Registry options" )
5152
5253 # AWS config and credentials options
5354 aws_group .addoption (
@@ -146,6 +147,13 @@ def pytest_addoption(parser: Parser) -> None:
146147 help = "Skip RHOAI/ODH-related resources (DSCI and DSC) checks" ,
147148 action = "store_true" ,
148149 )
150+ # Model Registry options
151+ model_registry_group .addoption (
152+ "--custom-namespace" ,
153+ default = False ,
154+ action = "store_true" ,
155+ help = "Indicates if the model registry tests are to be run against custom namespace" ,
156+ )
149157
150158
151159def pytest_cmdline_main (config : Any ) -> None :
You can’t perform that action at this time.
0 commit comments