@@ -48,12 +48,12 @@ def pytest_addoption(parser):
4848 dest = 'with_testing_base' ,
4949 default = True ,
5050 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 ,
5455 --with-page_source
55- (Those modes are all active by default now when
56- --with-testing_base is active. (Default: active)""" )
56+ """ )
5757 parser .addoption ('--log_path' , dest = 'log_path' ,
5858 default = 'latest_logs/' ,
5959 help = 'Where the log files are saved.' )
@@ -81,17 +81,17 @@ def pytest_addoption(parser):
8181 dest = 'with_screen_shots' ,
8282 default = False ,
8383 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)""" )
8585 parser .addoption ('--with-basic_test_info' , action = "store_true" ,
8686 dest = 'with_basic_test_info' ,
8787 default = False ,
8888 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)""" )
9090 parser .addoption ('--with-page_source' , action = "store_true" ,
9191 dest = 'with_page_source' ,
9292 default = False ,
9393 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)""" )
9595 parser .addoption ('--server' , action = 'store' ,
9696 dest = 'servername' ,
9797 default = 'localhost' ,
0 commit comments