Paras Kumar
Paras Kumar
You can skip this step. I think that line was for loading the model that you trained in previous cells. Or alternatively use this to save the model first `save_model_hdf5(object,...
@BeyondEvil No, I am using a parametrised session scoped fixture and wanted to generate report at the end of every session, as a part of teardown of that fixture.
``` @pytest.fixture(scope="session", params=[session1_config, session2_config]) def config(request, chrome_config): setup() yield teardown() ``` I want report to be generated everytime teardown is called for those set of test having same parameter.