Set the pytest selenium plugin to be active by default.

This commit is contained in:
Michael Mintz 2018-02-08 15:04:51 -05:00
parent aa5a9bf827
commit eef973f917
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ def pytest_addoption(parser):
Example: (--browser=firefox)""")
parser.addoption('--with-selenium', action="store_true",
dest='with_selenium',
default=False,
default=True,
help="Use if tests need to be run with a web browser.")
parser.addoption('--env', action='store',
dest='environment',