|
95 | 95 | <build> |
96 | 96 | <plugins> |
97 | 97 | <!-- skip default-test --> |
98 | | - <plugin> |
99 | | - <groupId>org.apache.maven.plugins</groupId> |
100 | | - <artifactId>maven-surefire-plugin</artifactId> |
101 | | - <executions> |
102 | | - <execution> |
103 | | - <id>default-test</id> |
104 | | - <configuration> |
105 | | - <skip>true</skip> |
106 | | - </configuration> |
107 | | - </execution> |
108 | | - </executions> |
109 | | - </plugin> |
110 | | - <!-- If the test starts separate processes, we should package first --> |
111 | | - <plugin> |
112 | | - <groupId>org.apache.maven.plugins</groupId> |
113 | | - <artifactId>maven-assembly-plugin</artifactId> |
114 | | - <version>${maven.assembly.version}</version> |
115 | | - <configuration> |
116 | | - <skipAssembly>${integrationTest.launchNodeInSameJVM}</skipAssembly> |
117 | | - </configuration> |
118 | | - <executions> |
119 | | - <!-- Package binaries--> |
120 | | - <execution> |
121 | | - <id>cluster-test-assembly</id> |
122 | | - <phase>package</phase> |
123 | | - <goals> |
124 | | - <goal>single</goal> |
125 | | - </goals> |
126 | | - <configuration> |
127 | | - <descriptors> |
128 | | - <descriptor>src/assembly/mpp-test.xml</descriptor> |
129 | | - </descriptors> |
130 | | - <finalName>template-node</finalName> |
131 | | - <appendAssemblyId>false</appendAssemblyId> |
132 | | - </configuration> |
133 | | - </execution> |
134 | | - <execution> |
135 | | - <id>cluster-test-assembly-share</id> |
136 | | - <phase>package</phase> |
137 | | - <goals> |
138 | | - <goal>single</goal> |
139 | | - </goals> |
140 | | - <configuration> |
141 | | - <descriptors> |
142 | | - <descriptor>src/assembly/mpp-share.xml</descriptor> |
143 | | - </descriptors> |
144 | | - <finalName>template-node-share</finalName> |
145 | | - <appendAssemblyId>false</appendAssemblyId> |
146 | | - </configuration> |
147 | | - </execution> |
148 | | - </executions> |
149 | | - </plugin> |
| 98 | +<!-- <plugin>--> |
| 99 | +<!-- <groupId>org.apache.maven.plugins</groupId>--> |
| 100 | +<!-- <artifactId>maven-surefire-plugin</artifactId>--> |
| 101 | +<!-- <executions>--> |
| 102 | +<!-- <execution>--> |
| 103 | +<!-- <id>default-test</id>--> |
| 104 | +<!-- <configuration>--> |
| 105 | +<!-- <skip>true</skip>--> |
| 106 | +<!-- </configuration>--> |
| 107 | +<!-- </execution>--> |
| 108 | +<!-- </executions>--> |
| 109 | +<!-- </plugin>--> |
| 110 | +<!-- <!– If the test starts separate processes, we should package first –>--> |
| 111 | +<!-- <plugin>--> |
| 112 | +<!-- <groupId>org.apache.maven.plugins</groupId>--> |
| 113 | +<!-- <artifactId>maven-assembly-plugin</artifactId>--> |
| 114 | +<!-- <version>${maven.assembly.version}</version>--> |
| 115 | +<!-- <configuration>--> |
| 116 | +<!-- <skipAssembly>${integrationTest.launchNodeInSameJVM}</skipAssembly>--> |
| 117 | +<!-- </configuration>--> |
| 118 | +<!-- <executions>--> |
| 119 | +<!-- <!– Package binaries–>--> |
| 120 | +<!-- <execution>--> |
| 121 | +<!-- <id>cluster-test-assembly</id>--> |
| 122 | +<!-- <phase>package</phase>--> |
| 123 | +<!-- <goals>--> |
| 124 | +<!-- <goal>single</goal>--> |
| 125 | +<!-- </goals>--> |
| 126 | +<!-- <configuration>--> |
| 127 | +<!-- <descriptors>--> |
| 128 | +<!-- <descriptor>src/assembly/mpp-test.xml</descriptor>--> |
| 129 | +<!-- </descriptors>--> |
| 130 | +<!-- <finalName>template-node</finalName>--> |
| 131 | +<!-- <appendAssemblyId>false</appendAssemblyId>--> |
| 132 | +<!-- </configuration>--> |
| 133 | +<!-- </execution>--> |
| 134 | +<!-- <execution>--> |
| 135 | +<!-- <id>cluster-test-assembly-share</id>--> |
| 136 | +<!-- <phase>package</phase>--> |
| 137 | +<!-- <goals>--> |
| 138 | +<!-- <goal>single</goal>--> |
| 139 | +<!-- </goals>--> |
| 140 | +<!-- <configuration>--> |
| 141 | +<!-- <descriptors>--> |
| 142 | +<!-- <descriptor>src/assembly/mpp-share.xml</descriptor>--> |
| 143 | +<!-- </descriptors>--> |
| 144 | +<!-- <finalName>template-node-share</finalName>--> |
| 145 | +<!-- <appendAssemblyId>false</appendAssemblyId>--> |
| 146 | +<!-- </configuration>--> |
| 147 | +<!-- </execution>--> |
| 148 | +<!-- </executions>--> |
| 149 | +<!-- </plugin>--> |
150 | 150 | <!-- Run integration tests --> |
151 | | - <plugin> |
152 | | - <groupId>org.apache.maven.plugins</groupId> |
153 | | - <artifactId>maven-failsafe-plugin</artifactId> |
154 | | - <executions> |
155 | | - <execution> |
156 | | - <id>integration-test</id> |
157 | | - <goals> |
158 | | - <goal>integration-test</goal> |
159 | | - </goals> |
160 | | - <configuration> |
161 | | - <groups>${integrationTest.includedGroups}</groups> |
162 | | - <excludedGroups>${integrationTest.excludedGroups}</excludedGroups> |
163 | | - <useSystemClassLoader>false</useSystemClassLoader> |
164 | | - <parallel>${integrationTest.parallelMode}</parallel> |
165 | | - <threadCount>1</threadCount> |
166 | | - <forkCount>${integrationTest.forkCount}</forkCount> |
167 | | - <reuseForks>false</reuseForks> |
168 | | - <systemPropertyVariables> |
169 | | - <TestEnv>${integrationTest.testEnv}</TestEnv> |
170 | | - <RandomSelectWriteNode>${integrationTest.randomSelectWriteNode}</RandomSelectWriteNode> |
171 | | - <ReadAndVerifyWithMultiNode>${integrationTest.readAndVerifyWithMultiNode}</ReadAndVerifyWithMultiNode> |
172 | | - </systemPropertyVariables> |
173 | | - <summaryFile>target/failsafe-reports/failsafe-summary-IT.xml</summaryFile> |
174 | | - </configuration> |
175 | | - </execution> |
176 | | - <execution> |
177 | | - <id>verify</id> |
178 | | - <goals> |
179 | | - <goal>verify</goal> |
180 | | - </goals> |
181 | | - <configuration> |
182 | | - <skipTests>false</skipTests> |
183 | | - </configuration> |
184 | | - </execution> |
185 | | - </executions> |
186 | | - </plugin> |
187 | | - <plugin> |
188 | | - <groupId>org.codehaus.mojo</groupId> |
189 | | - <artifactId>exec-maven-plugin</artifactId> |
190 | | - <version>1.6.0</version> |
191 | | - <configuration> |
192 | | - <mainClass>org.apache.iotdb.it.framework.IoTDBTestReporter</mainClass> |
193 | | - </configuration> |
194 | | - <executions> |
195 | | - <execution> |
196 | | - <id>report</id> |
197 | | - <phase>post-integration-test</phase> |
198 | | - <goals> |
199 | | - <goal>java</goal> |
200 | | - </goals> |
201 | | - </execution> |
202 | | - </executions> |
203 | | - </plugin> |
| 151 | +<!-- <plugin>--> |
| 152 | +<!-- <groupId>org.apache.maven.plugins</groupId>--> |
| 153 | +<!-- <artifactId>maven-failsafe-plugin</artifactId>--> |
| 154 | +<!-- <executions>--> |
| 155 | +<!-- <execution>--> |
| 156 | +<!-- <id>integration-test</id>--> |
| 157 | +<!-- <goals>--> |
| 158 | +<!-- <goal>integration-test</goal>--> |
| 159 | +<!-- </goals>--> |
| 160 | +<!-- <configuration>--> |
| 161 | +<!-- <groups>${integrationTest.includedGroups}</groups>--> |
| 162 | +<!-- <excludedGroups>${integrationTest.excludedGroups}</excludedGroups>--> |
| 163 | +<!-- <useSystemClassLoader>false</useSystemClassLoader>--> |
| 164 | +<!-- <parallel>${integrationTest.parallelMode}</parallel>--> |
| 165 | +<!-- <threadCount>1</threadCount>--> |
| 166 | +<!-- <forkCount>${integrationTest.forkCount}</forkCount>--> |
| 167 | +<!-- <reuseForks>false</reuseForks>--> |
| 168 | +<!-- <systemPropertyVariables>--> |
| 169 | +<!-- <TestEnv>${integrationTest.testEnv}</TestEnv>--> |
| 170 | +<!-- <RandomSelectWriteNode>${integrationTest.randomSelectWriteNode}</RandomSelectWriteNode>--> |
| 171 | +<!-- <ReadAndVerifyWithMultiNode>${integrationTest.readAndVerifyWithMultiNode}</ReadAndVerifyWithMultiNode>--> |
| 172 | +<!-- </systemPropertyVariables>--> |
| 173 | +<!-- <summaryFile>target/failsafe-reports/failsafe-summary-IT.xml</summaryFile>--> |
| 174 | +<!-- </configuration>--> |
| 175 | +<!-- </execution>--> |
| 176 | +<!-- <execution>--> |
| 177 | +<!-- <id>verify</id>--> |
| 178 | +<!-- <goals>--> |
| 179 | +<!-- <goal>verify</goal>--> |
| 180 | +<!-- </goals>--> |
| 181 | +<!-- <configuration>--> |
| 182 | +<!-- <skipTests>true</skipTests>--> |
| 183 | +<!-- </configuration>--> |
| 184 | +<!-- </execution>--> |
| 185 | +<!-- </executions>--> |
| 186 | +<!-- </plugin>--> |
| 187 | +<!-- <plugin>--> |
| 188 | +<!-- <groupId>org.codehaus.mojo</groupId>--> |
| 189 | +<!-- <artifactId>exec-maven-plugin</artifactId>--> |
| 190 | +<!-- <version>1.6.0</version>--> |
| 191 | +<!-- <configuration>--> |
| 192 | +<!-- <mainClass>org.apache.iotdb.it.framework.IoTDBTestReporter</mainClass>--> |
| 193 | +<!-- </configuration>--> |
| 194 | +<!-- <executions>--> |
| 195 | +<!-- <execution>--> |
| 196 | +<!-- <id>report</id>--> |
| 197 | +<!-- <phase>post-integration-test</phase>--> |
| 198 | +<!-- <goals>--> |
| 199 | +<!-- <goal>java</goal>--> |
| 200 | +<!-- </goals>--> |
| 201 | +<!-- </execution>--> |
| 202 | +<!-- </executions>--> |
| 203 | +<!-- </plugin>--> |
204 | 204 | </plugins> |
205 | 205 | </build> |
206 | 206 | <profiles> |
|
216 | 216 | <integrationTest.parallelMode>classes</integrationTest.parallelMode> |
217 | 217 | </properties> |
218 | 218 | <activation> |
219 | | - <activeByDefault>true</activeByDefault> |
| 219 | + <activeByDefault>false</activeByDefault> |
220 | 220 | </activation> |
221 | 221 | </profile> |
222 | 222 | <!-- Currently RemoteIT is not working as it lacks of the remote endpoint parameters --> |
|
0 commit comments