Skip to content

Commit

Permalink
correcting poms for test parallelism
Browse files Browse the repository at this point in the history
  • Loading branch information
lassewesth committed Sep 4, 2017
1 parent 4755934 commit bc38074
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
Expand Up @@ -473,7 +473,10 @@ public class Applier implements AutoCloseable

Applier()
{
database = (GraphDatabaseAPI) new TestGraphDatabaseFactory().newEmbeddedDatabase( directory );
database = (GraphDatabaseAPI) new TestGraphDatabaseFactory()
.newEmbeddedDatabaseBuilder( directory )
.setConfig( "dbms.backup.enabled", "false" )
.newGraphDatabase();
DependencyResolver dependencyResolver = database.getDependencyResolver();

commitProcess = new TransactionRepresentationCommitProcess(
Expand Down Expand Up @@ -527,6 +530,7 @@ private void generateInitialData()
// tests and records around that. Those tests could change, but the simpler option is to just
// keep the block size to 60 and let them be.
.setConfig( GraphDatabaseSettings.label_block_size, "60" )
.setConfig( "dbms.backup.enabled", "false" )
.newGraphDatabase();
try
{
Expand Down
Expand Up @@ -28,10 +28,10 @@
/**
* Test for {@link ParallelBatchImporter} in an enterprise environment so that enterprise store is used.
*/
public class ParallelBatchImporterTest extends org.neo4j.unsafe.impl.batchimport.ParallelBatchImporterTest
public class ParallelBatchImporterIT extends org.neo4j.unsafe.impl.batchimport.ParallelBatchImporterTest
{
public ParallelBatchImporterTest( InputIdGenerator inputIdGenerator, IdMapper idMapper, IdGenerator idGenerator,
boolean multiPassIterators )
public ParallelBatchImporterIT( InputIdGenerator inputIdGenerator, IdMapper idMapper, IdGenerator idGenerator,
boolean multiPassIterators )
{
super( inputIdGenerator, idMapper, idGenerator, multiPassIterators );
}
Expand Down
Expand Up @@ -21,7 +21,7 @@

import org.neo4j.kernel.impl.store.format.highlimit.HighLimitWithSmallRecords;

public class HighLimitConsistencyCheckServiceIntegrationTest extends ConsistencyCheckServiceIntegrationTest
public class HighLimitConsistencyCheckServiceIT extends ConsistencyCheckServiceIntegrationTest
{
@Override
protected String getRecordFormatName()
Expand Down
Expand Up @@ -22,7 +22,7 @@
import org.neo4j.consistency.checking.full.ExecutionOrderIntegrationTest;
import org.neo4j.kernel.impl.store.format.highlimit.HighLimitWithSmallRecords;

public class HighLimitExecutionOrderIntegrationTest extends ExecutionOrderIntegrationTest
public class HighLimitExecutionOrderIT extends ExecutionOrderIntegrationTest
{

@Override
Expand Down
Expand Up @@ -22,7 +22,7 @@
import org.neo4j.consistency.checking.full.FullCheckIntegrationTest;
import org.neo4j.kernel.impl.store.format.highlimit.HighLimitWithSmallRecords;

public class HighLimitFullCheckIntegrationTest extends FullCheckIntegrationTest
public class HighLimitFullCheckIT extends FullCheckIntegrationTest
{
@Override
protected String getRecordFormatName()
Expand Down
Expand Up @@ -56,7 +56,7 @@
* that exist in enterprise edition.
*/
@RunWith( Parameterized.class )
public class BatchInsertEnterpriseTest
public class BatchInsertEnterpriseIT
{
@Rule
public final TestDirectory directory = TestDirectory.testDirectory();
Expand Down

0 comments on commit bc38074

Please sign in to comment.