Skip to content

Commit

Permalink
Merge pull request #98 from mohanvive/master
Browse files Browse the repository at this point in the history
Disable parallel execution of tests
  • Loading branch information
dnwick authored Jun 5, 2019
2 parents b7f7735 + 22d69f2 commit c124a18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ public void receive(Event[] events) {
List<Long> expectedValues = new ArrayList<>(2);
expectedValues.add(0L);
expectedValues.add(0L);
Thread.sleep(3000);
Thread.sleep(5000);
AssertJUnit.assertEquals(2, count);
AssertJUnit.assertEquals("Kafka Source expected input not received", expectedNames,
receivedEventNameList);
Expand Down
2 changes: 1 addition & 1 deletion component/src/test/resources/testng.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >

<suite name="Siddhi-Execution-Kafka_Test-Suite" parallel="false" thread-count="1">
<test name="siddhi-execution-kafka-unit-tests" preserve-order="true">
<test name="siddhi-execution-kafka-unit-tests" preserve-order="true" parallel="false">
<classes>
<class name="org.wso2.extension.siddhi.io.kafka.SequencedMessagingTestCase" />
<class name="org.wso2.extension.siddhi.io.kafka.sink.KafkaSinkTestCase" />
Expand Down

0 comments on commit c124a18

Please sign in to comment.