diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 03220d5b..7cba6e2d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -57,12 +57,12 @@ jobs: - name: Run INTEG tests run: | docker login -u ${OWN_REGISTRY_USR} --password-stdin ${REGISTRY} <<< ${OWN_REGISTRY_PWD} - docker image pull ${REGISTRY}/dfinance/dvm:${DVM_TAG} + docker image pull ${REGISTRY}/dfinance/dvm:${TAG} cd go/src/github.com/${{ github.repository }} go test ./... --tags=integ docker logout env: - DVM_TAG: ${{ secrets.DVM_TAG }} + TAG: v0.3.1 REGISTRY: ${{ secrets.OWN_REGISTRY }} OWN_REGISTRY_USR: ${{ secrets.OWN_REGISTRY_USR }} OWN_REGISTRY_PWD: ${{ secrets.OWN_REGISTRY_PWD }} diff --git a/app/integ_test.go b/app/integ_test.go index ef46ee79..cd077c5e 100644 --- a/app/integ_test.go +++ b/app/integ_test.go @@ -100,7 +100,7 @@ func Test_VMExecuteScript(t *testing.T) { //t.Parallel() ct := cliTester.New( t, - true, + false, cliTester.VMConnectionSettings(50, 1000, 100), cliTester.VMCommunicationBaseAddress("tcp://127.0.0.1"), )