We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96f3b37 commit 9b2c890Copy full SHA for 9b2c890
scripts/integration-tests.sh
@@ -1,7 +1,9 @@
1
#!/usr/bin/env bash
2
set -e
3
4
-rm ~/.testcontainers.properties
+if [ -f "~/.testcontainers.properties" ]; then
5
+ rm ~/.testcontainers.properties
6
+fi
7
echo 'testcontainers.reuse.enable=true' > ~/.testcontainers.properties
8
9
./mvnw clean install -B -Pdocs ${@}
0 commit comments