fix random failed configurator tests
While checking wendelin test result, i noticed that configurator test failed from time to time, like this test result
It happaned when all the configurator tests run at one test node.
In the test result above, all configurator tests were run at rapidspace-testnode-007-3Nodes-ERP5PROJECT4
Here are extract of the logs, we can see for instance home unit_test.3
It run firstly erp5_wendelin_configurator:testWendelinConfigurator, then it loaded data created previous to run erp5_wendelin_configurator:testWendelinConfiguratorSetupDataSample
But since the site was already configured by previous test, it will not configurated again, thus we have one test failed
2025-05-23 16:23:49,625 INFO runTestSuite: $ runUnitTest xxx --instance_home **unit_test.3** --load --save --with_wendelin_core erp5_wendelin_configurator:testWendelinConfigurator
2025-05-23 16:31:19,310 INFO runTestSuite: $ runUnitTest xxx --instance_home **unit_test.1** --load --save --with_wendelin_core erp5_wendelin_configurator:testWendelinConfiguratorSetupDataLakeAndSecurityModel
2025-05-23 16:35:10,525 INFO runTestSuite: $ runUnitTest xxx --instance_home **unit_test.3** --load --save --with_wendelin_core erp5_wendelin_configurator:testWendelinConfiguratorSetupDataSample
2025-05-23 16:35:25,498 INFO runTestSuite: $ runUnitTest xxx --instance_home **unit_test.2** --load --save --with_wendelin_core erp5_wendelin_configurator:testWendelinConfiguratorSetupDataNotebook
To fix the random configurator test, i propose to not use load&save for it
@Tyagov what do you think ?