By default, the run_tests function in basemode.py sets the default value of get_certs to False.
However, for the scan mode, one might want to not pick up the certificate data. Currently, they don't have a way to override the defaults inherited from BaseMode.
We should add an argument to control this in either basemode.py or child modes that wish to support it, such as scan.py.
By default, the
run_tests
function inbasemode.py
sets the default value ofget_certs
toFalse
.However, for the
scan
mode, one might want to not pick up the certificate data. Currently, they don't have a way to override the defaults inherited fromBaseMode
.We should add an argument to control this in either
basemode.py
or child modes that wish to support it, such asscan.py
.