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 @@ -44,6 +44,7 @@ def pytest_addoption(parser: Parser) -> None:
4444 runtime_group = parser .getgroup (name = "Runtime details" )
4545 upgrade_group = parser .getgroup (name = "Upgrade options" )
4646 must_gather_group = parser .getgroup (name = "MustGather" )
47+ model_registry_group = parser .getgroup (name = "Model Registry options" )
4748
4849 # AWS config and credentials options
4950 aws_group .addoption (
@@ -130,6 +131,13 @@ def pytest_addoption(parser: Parser) -> None:
130131 action = "store_true" ,
131132 default = False ,
132133 )
134+ # # Model Registry options
135+ model_registry_group .addoption (
136+ "--custom-namespace" ,
137+ default = False ,
138+ action = "store_true" ,
139+ help = "Indicates if the model registry tests are to be run against custom namespace" ,
140+ )
133141
134142
135143def pytest_cmdline_main (config : Any ) -> None :
You can’t perform that action at this time.
0 commit comments