We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bff00f commit a5f1fb8Copy full SHA for a5f1fb8
2 files changed
integration-tests/deploy/config.go
@@ -6,6 +6,7 @@ import (
6
"os"
7
"strconv"
8
"strings"
9
+ "testing"
10
)
11
12
var (
@@ -214,6 +215,9 @@ func ValidateGeth() (*GethConfig, error) {
214
215
func ValidateDevnet() (*DevnetConfig, error) {
216
var errs []string
217
name := "chainlink-aptos.devnet"
218
+ if testing.Testing() {
219
+ name += "-" + strconv.Itoa(os.Getpid())
220
+ }
221
222
devnetImage, ok := os.LookupEnv("DEVNET_IMAGE")
223
scripts/devnet.sh
@@ -2,7 +2,7 @@
2
3
dir="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
4
5
-container_name="chainlink-aptos.devnet"
+container_name="chainlink-aptos.devnet-$$"
container_image="aptoslabs/tools:aptos-node-v1.34.3-hotfix"
if [ -n "${CUSTOM_IMAGE:-}" ]; then
0 commit comments