Skip to content

Commit f48da77

Browse files
committed
Add --env=uat (User Acceptance Testing)
1 parent 63306d8 commit f48da77

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

seleniumbase/plugins/base_plugin.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ def options(self, parser, env):
6262
constants.Environment.BETA,
6363
constants.Environment.MAIN,
6464
constants.Environment.TEST,
65+
constants.Environment.UAT,
6566
),
6667
default=constants.Environment.TEST,
6768
help="""This option sets a test env from a list of choices.

seleniumbase/plugins/pytest_plugin.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,7 @@ def pytest_addoption(parser):
210210
constants.Environment.BETA,
211211
constants.Environment.MAIN,
212212
constants.Environment.TEST,
213+
constants.Environment.UAT,
213214
),
214215
default=constants.Environment.TEST,
215216
help="""This option sets a test env from a list of choices.

0 commit comments

Comments
 (0)