Avoid downloaded equinox for each test
Somehow equinox-3.7.1 is downloaded by pax-exam on each testThat makes the execution of the tests very slow. This looks specific to equinox-3.7.1 Commenting it out until we find a better way.
This commit is contained in:
parent
2b13648b0e
commit
582de3e0f8
|
@ -58,7 +58,9 @@ public class AbstractTestOSGi
|
||||||
protected static void addMoreOSGiContainers(List<Option> options)
|
protected static void addMoreOSGiContainers(List<Option> options)
|
||||||
{
|
{
|
||||||
options.add(CoreOptions.equinox().version("3.6.1"));
|
options.add(CoreOptions.equinox().version("3.6.1"));
|
||||||
options.add(CoreOptions.equinox().version("3.7.1"));
|
// equinox-3.7.1 is somehow always downloaded from the internet
|
||||||
|
//by pax-exam. this makes the execution of the test too slow...
|
||||||
|
// options.add(CoreOptions.equinox().version("3.7.1")); //commented to keep the tests speedy
|
||||||
options.add(CoreOptions.felix().version("3.2.2"));
|
options.add(CoreOptions.felix().version("3.2.2"));
|
||||||
options.add(CoreOptions.felix().version("4.0.2"));
|
options.add(CoreOptions.felix().version("4.0.2"));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue