@@ -48,12 +48,12 @@ def pytest_addoption(parser):
48
48
dest = 'with_testing_base' ,
49
49
default = True ,
50
50
help = """Use to save logs and screenshots when tests fail.
51
- It's no longer needed to add the following arguments:
52
- --with-screen_shots
53
- --with-basic_test_info
51
+ The following options are now active by default
52
+ with --with-testing_base (which is on by default):
53
+ --with-screen_shots ,
54
+ --with-basic_test_info ,
54
55
--with-page_source
55
- (Those modes are all active by default now when
56
- --with-testing_base is active. (Default: active)""" )
56
+ """ )
57
57
parser .addoption ('--log_path' , dest = 'log_path' ,
58
58
default = 'latest_logs/' ,
59
59
help = 'Where the log files are saved.' )
@@ -81,17 +81,17 @@ def pytest_addoption(parser):
81
81
dest = 'with_screen_shots' ,
82
82
default = False ,
83
83
help = """Use to save screenshots on test failure.
84
- (When " --with-testing_base" is True, this is on. )""" )
84
+ (Automatically on when using --with-testing_base)""" )
85
85
parser .addoption ('--with-basic_test_info' , action = "store_true" ,
86
86
dest = 'with_basic_test_info' ,
87
87
default = False ,
88
88
help = """Use to save basic test info on test failure.
89
- (When " --with-testing_base" is True, this is on. )""" )
89
+ (Automatically on when using --with-testing_base)""" )
90
90
parser .addoption ('--with-page_source' , action = "store_true" ,
91
91
dest = 'with_page_source' ,
92
92
default = False ,
93
93
help = """Use to save page source on test failure.
94
- (When " --with-testing_base" is True, this is on. )""" )
94
+ (Automatically on when using --with-testing_base)""" )
95
95
parser .addoption ('--server' , action = 'store' ,
96
96
dest = 'servername' ,
97
97
default = 'localhost' ,
0 commit comments