8000 renamed resilience-tests module · arangodb/arangodb-java-driver@1c41a91 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1c41a91

Browse files
committed
renamed resilience-tests module
1 parent 30f9e01 commit 1c41a91

35 files changed

+10
-10
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -295,16 +295,16 @@ jobs:
295295
- run:
296296
name: Start Toxiproxy
297297
command: ./bin/startProxy.sh
298-
working_directory: resilience-tests
298+
working_directory: test-resilience
299299
background: true
300300
environment:
301301
TOXIPROXY_VERSION: v2.9.0
302302
- run:
303303
name: mvn dependency:tree
304-
command: mvn -am -pl resilience-tests dependency:tree -Dshaded=<<parameters.shaded>>
304+
command: mvn -am -pl test-resilience dependency:tree -Dshaded=<<parameters.shaded>>
305305
- run:
306306
name: Test
307-
command: mvn package -am -pl resilience-tests -Dshaded=<<parameters.shaded>>
307+
command: mvn package -am -pl test-resilience -Dshaded=<<parameters.shaded>>
308308
- store_cache
309309

310310
native:

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ target
88

99
test-results-native
1010
.flattened-pom.xml
11-
/resilience-tests/bin/toxiproxy-server-linux-amd64
11+
/test-resilience/bin/toxiproxy-server-linux-amd64
1212

1313
dependency-reduced-pom.xml
1414
/bin/

dev-README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ mvn -Pplain test
9090
## resilience tests
9191
```shell
9292
mvn install -DskipTests=true -Dgpg.skip=true -Dmaven.javadoc.skip=true
93-
cd resilience-tests
93+
cd test-resilience
9494
mvn test
9595
```
9696
````

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<module>test-native</module>
3737
<module>test-non-functional</module>
3838
<module>test-functional-run</module>
39-
<module>resilience-tests</module>
39+
<module>test-resilience</module>
4040
</modules>
4141
</profile>
4242
</profiles>

test-functional/src/test/java/com/arangodb/CompressionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
/**
1515
* Non-exhaustive tests of content encoding, executed during integration and native tests.
16-
* A complete test is at resilience-tests/src/test/java/resilience/compression/CompressionTest.java
16+
* A complete test is at test-resilience/src/test/java/resilience/compression/CompressionTest.java
1717
*
1818
* @author Michele Rastelli
1919
*/

resilience-tests/README.md renamed to test-resilience/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# arangodb-java-driver-resiliency-tests
1+
# arangodb-java-driver-resilience-tests
22

33
## run
44

@@ -11,5 +11,5 @@ Start [toxiproxy-server](https://github.com/Shopify/toxiproxy) at `127.0.0.1:847
1111

1212
Run the tests:
1313
```shell
14-
mvn test -am -pl resilience-tests
14+
mvn test -am -pl test-resilience
1515
```

resilience-tests/pom.xml renamed to test-resilience/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

13-
<artifactId>resilience-tests</artifactId>
13+
<artifactId>test-resilience</artifactId>
1414

1515
<dependencies>
1616
<dependency>

0 commit comments

Comments
 (0)
0