Some of our tests (in particular, the TestServer tests) run quite slowly and consume a bunch of resources (sometimes this leads to OOM errors on Jenkins). We should try to optimize some of these tests.
For TestServer, a lot of this is due to expensive code in TestServer.setUp that is run once for each test. One way to optimize this is by trying to move some of it to TestServer.setUpClass that is only run once for all TestServer tests.
Some of our tests (in particular, the TestServer tests) run quite slowly and consume a bunch of resources (sometimes this leads to OOM errors on Jenkins). We should try to optimize some of these tests.
For TestServer, a lot of this is due to expensive code in TestServer.setUp that is run once for each test. One way to optimize this is by trying to move some of it to TestServer.setUpClass that is only run once for all TestServer tests.