We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51299a1 commit 0303c9dCopy full SHA for 0303c9d
conftest.py
@@ -1,9 +1,9 @@
1
""" This is the pytest configuration file """
2
3
+import optparse
4
import os
5
import shutil
6
import time
-from optparse import SUPPRESS_HELP
7
from seleniumbase.config import settings
8
from seleniumbase.fixtures import constants
9
@@ -43,7 +43,7 @@ def pytest_addoption(parser):
43
dest='database_env',
44
choices=('prod', 'qa', 'test'),
45
default='test',
46
- help=SUPPRESS_HELP)
+ help=optparse.SUPPRESS_HELP)
47
parser.addoption('--with-s3_logging', action="store_true",
48
dest='with_s3_logging',
49
default=False,
0 commit comments