Too many of our unit tests are dependent on external resources (i.e. a network connection or cached files) when they really don't need to be for what they're testing. We should use more mocks or stored static test data instead, and then remove the webtest marker wherever possible. In some cases this could be solved via ScopeSim_Data, but more likely many of these test shouldn't depend on these files in the first place, if they are true unit tests for single functions / methods.
Too many of our unit tests are dependent on external resources (i.e. a network connection or cached files) when they really don't need to be for what they're testing. We should use more mocks or stored static test data instead, and then remove the
webtestmarker wherever possible. In some cases this could be solved via ScopeSim_Data, but more likely many of these test shouldn't depend on these files in the first place, if they are true unit tests for single functions / methods.