This is an automated email from the ASF dual-hosted git repository. haonan pushed a commit to branch enable_tests in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 43d1eadaff0d684eca12440f938f9dba86c835e9 Author: HTHou <[email protected]> AuthorDate: Thu Dec 1 01:28:32 2022 +0800 Revert "disable tests (#8257)" This reverts commit 6a878a313e5de7c2ec4a3dcf2c8a20ace3c455e2. --- confignode/pom.xml | 2 +- consensus/pom.xml | 2 +- cross-tests/pom.xml | 2 +- integration-test/pom.xml | 38 +++++++++++++++++++------------------- integration/pom.xml | 20 ++------------------ server/pom.xml | 2 +- tsfile/pom.xml | 2 +- 7 files changed, 26 insertions(+), 42 deletions(-) diff --git a/confignode/pom.xml b/confignode/pom.xml index c39f7bb3a0..f24c883113 100644 --- a/confignode/pom.xml +++ b/confignode/pom.xml @@ -30,7 +30,7 @@ <artifactId>iotdb-confignode</artifactId> <name>IoTDB ConfigNode</name> <properties> - <confignode.test.skip>true</confignode.test.skip> + <confignode.test.skip>false</confignode.test.skip> <confignode.it.skip>${confignode.test.skip}</confignode.it.skip> <confignode.ut.skip>${confignode.test.skip}</confignode.ut.skip> </properties> diff --git a/consensus/pom.xml b/consensus/pom.xml index 1437b0374f..7a39c31627 100644 --- a/consensus/pom.xml +++ b/consensus/pom.xml @@ -33,7 +33,7 @@ <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <ratis.version>2.4.1</ratis.version> - <consensus.test.skip>true</consensus.test.skip> + <consensus.test.skip>false</consensus.test.skip> <consensus.it.skip>${consensus.test.skip}</consensus.it.skip> <consensus.ut.skip>${consensus.test.skip}</consensus.ut.skip> </properties> diff --git a/cross-tests/pom.xml b/cross-tests/pom.xml index c4e68359b8..6edc9e1690 100644 --- a/cross-tests/pom.xml +++ b/cross-tests/pom.xml @@ -28,7 +28,7 @@ <modelVersion>4.0.0</modelVersion> <artifactId>cross-tests</artifactId> <properties> - <cross.test.test.skip>true</cross.test.test.skip> + <cross.test.test.skip>false</cross.test.test.skip> <cross.test.it.skip>${cross.test.test.skip}</cross.test.it.skip> <cross.ut.skip>${cross.test.test.skip}</cross.ut.skip> </properties> diff --git a/integration-test/pom.xml b/integration-test/pom.xml index 53713f352d..016f563e6a 100644 --- a/integration-test/pom.xml +++ b/integration-test/pom.xml @@ -179,28 +179,28 @@ <goal>verify</goal> </goals> <configuration> - <skipTests>true</skipTests> + <skipTests>false</skipTests> </configuration> </execution> </executions> </plugin> -<!-- <plugin>--> -<!-- <groupId>org.codehaus.mojo</groupId>--> -<!-- <artifactId>exec-maven-plugin</artifactId>--> -<!-- <version>1.6.0</version>--> -<!-- <configuration>--> -<!-- <mainClass>org.apache.iotdb.it.framework.IoTDBTestReporter</mainClass>--> -<!-- </configuration>--> -<!-- <executions>--> -<!-- <execution>--> -<!-- <id>report</id>--> -<!-- <phase>post-integration-test</phase>--> -<!-- <goals>--> -<!-- <goal>java</goal>--> -<!-- </goals>--> -<!-- </execution>--> -<!-- </executions>--> -<!-- </plugin>--> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.6.0</version> + <configuration> + <mainClass>org.apache.iotdb.it.framework.IoTDBTestReporter</mainClass> + </configuration> + <executions> + <execution> + <id>report</id> + <phase>post-integration-test</phase> + <goals> + <goal>java</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> <profiles> @@ -216,7 +216,7 @@ <integrationTest.parallelMode>classes</integrationTest.parallelMode> </properties> <activation> - <activeByDefault>false</activeByDefault> + <activeByDefault>true</activeByDefault> </activation> </profile> <!-- Currently RemoteIT is not working as it lacks of the remote endpoint parameters --> diff --git a/integration/pom.xml b/integration/pom.xml index e77c15a9cd..a11052a101 100644 --- a/integration/pom.xml +++ b/integration/pom.xml @@ -105,14 +105,6 @@ </execution> </executions> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-failsafe-plugin</artifactId> - <configuration> - <skipTests>true</skipTests> - <skipITs>true</skipITs> - </configuration> - </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> @@ -185,7 +177,7 @@ <goal>integration-test</goal> </goals> <configuration> - <skipTests>true</skipTests> + <skipTests>false</skipTests> <groups>${test.includedGroups}</groups> <excludedGroups>${test.excludedGroups}</excludedGroups> <useSystemClassLoader>false</useSystemClassLoader> @@ -204,7 +196,7 @@ <goal>verify</goal> </goals> <configuration> - <skipTests>true</skipTests> + <skipTests>false</skipTests> <summaryFiles> <summaryFile>target/failsafe-reports/failsafe-summary-Remote.xml</summaryFile> </summaryFiles> @@ -261,14 +253,6 @@ </execution> </executions> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-failsafe-plugin</artifactId> - <configuration> - <skipTests>true</skipTests> - <skipITs>true</skipITs> - </configuration> - </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> diff --git a/server/pom.xml b/server/pom.xml index 0b9180a489..29924af52a 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -30,7 +30,7 @@ <artifactId>iotdb-server</artifactId> <name>IoTDB Server</name> <properties> - <iotdb.test.skip>true</iotdb.test.skip> + <iotdb.test.skip>false</iotdb.test.skip> <iotdb.it.skip>${iotdb.test.skip}</iotdb.it.skip> <iotdb.ut.skip>${iotdb.test.skip}</iotdb.ut.skip> <jjwt-api.version>0.10.8</jjwt-api.version> diff --git a/tsfile/pom.xml b/tsfile/pom.xml index 9eb4cd8e55..a5a7d4b06c 100644 --- a/tsfile/pom.xml +++ b/tsfile/pom.xml @@ -32,7 +32,7 @@ <description>A columnar file format designed for time-series data</description> <url>https://github.com/thulab/iotdb/tree/master/tsfile</url> <properties> - <tsfile.test.skip>true</tsfile.test.skip> + <tsfile.test.skip>false</tsfile.test.skip> <tsfile.it.skip>${tsfile.test.skip}</tsfile.it.skip> <tsfile.ut.skip>${tsfile.test.skip}</tsfile.ut.skip> </properties>
