8000 removed test-functional-run module · arangodb/arangodb-java-driver@3d693a9 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 3d693a9

Browse files
committed
removed test-functional-run module
1 parent 1c41a91 commit 3d693a9

File tree

7 files changed

+30
-89
lines changed

7 files changed

+30
-89
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -171,12 +171,12 @@ jobs:
171171
- load_cache
172172
- run:
173173
name: mvn dependency:tree
174-
command: mvn -am -pl test-functional-run dependency:tree -Dshaded=<<parameters.shaded>> <<parameters.args>>
174+
command: mvn -am -pl test-functional dependency:tree -Dshaded=<<parameters.shaded>> <<parameters.args>>
175175
- run:
176176
name: Test
177-
command: mvn -am -pl test-functional-run package -Dshaded=<<parameters.shaded>> <<parameters.args>>
177+
command: mvn -am -pl test-functional package -Dshaded=<<parameters.shaded>> <<parameters.args>>
178178
- report:
179-
working_directory: test-functional-run
179+
working_directory: test-functional
180180
- store_cache
181181

182182
test-non-func:
@@ -201,7 +201,7 @@ jobs:
201201
name: Test
202202
command: mvn -am -pl test-non-functional package -Dshaded=<<parameters.shaded>>
203203
- report:
204-
working_directory: test-functional-run
204+
working_directory: test-functional
205205
- store_cache
206206

207207
test-ssl:
@@ -245,7 +245,7 @@ jobs:
245245
key: sonar-{{ .Environment.CIRCLE_JOB }}-{{ checksum "/tmp/maven_cache_seed" }}
246246
- run:
247247
name: Test
248-
command: mvn -Pstatic-code-analysis -am -pl test-functional-run test
248+
command: mvn -Pstatic-code-analysis -am -pl test-functional test
249249
- run:
250250
name: Analyze
251251
command: mvn -DnoTests -Dmaven.test.skip=true -Dgpg.skip=true -Dmaven.javadoc.skip=true verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=arangodb_arangodb-java-driver

dev-README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ mvn versions:display-plugin-updates
3030
## Code Analysis
3131
Analyze (Spotbugs and JaCoCo):
3232
```
33-
mvn -Pstatic-code-analysis -am -pl test-functional-run test
33+
mvn -Pstatic-code-analysis -am -pl test-functional test
3434
mvn -Dgpg.skip=true -Dmaven.javadoc.skip=true -am -pl core verify
3535
```
3636
Reports:

pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
<module>test-functional</module>
3636
<module>test-native</module>
3737
<module>test-non-functional</module>
38-
<module>test-functional-run</module>
3938
<module>test-resilience</module>
4039
</modules>
4140
</profile>

release-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
</execution>
158158
</executions>
159159
<configuration>
160-
<dataFile>../test-functional-run/target/jacoco.exec</dataFile>
160+
<dataFile>../test-functional/target/jacoco.exec</dataFile>
161161
</configuration>
162162
</plugin>
163163
</plugins>

test-functional-run/pom.xml

Lines changed: 0 additions & 67 deletions
This file was deleted.

test-functional-run/src/test/java/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

test-functional/pom.xml

Lines changed: 23 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,6 @@
1313

1414
<artifactId>test-functional</artifactId>
1515

16-
<build>
17-
<plugins>
18-
<plugin>
19-
<groupId>org.apache.maven.plugins</groupId>
20-
<artifactId>maven-surefire-plugin</artifactId>
21-
<configuration>
22-
<skipTests>true</skipTests>
23-
</configuration>
24-
</plugin>
25-
</plugins>
26-
</build>
27-
2816
<profiles>
2917
<profile>
3018
<id>shaded</id>
@@ -62,6 +50,29 @@
6250
</plugins>
6351
</build>
6452
</profile>
53+
<profile>
54+
<id>static-code-analysis</id>
55+
<build>
56+
<plugins>
57+
<plugin>
58+
<groupId>org.jacoco</groupId>
59+
<artifactId>jacoco-maven-plugin</artifactId>
60+
<executions>
61+
<execution>
62+
<goals>
63+
<goal>prepare-agent</goal>
64+
</goals>
7E87 65+
</execution>
66+
</executions>
67+
<configuration>
68+
<includes>
69+
<include>com/arangodb/**</include>
70+
</includes>
71+
</configuration>
72+
</plugin>
73+
</plugins>
74+
</build>
75+
</profile>
6576
</profiles>
6677

6778
</project>

0 commit comments

Comments
 (0)
0