From 4cca285eedf6a424d748238ce2b107ffb903332c Mon Sep 17 00:00:00 2001 From: Mikhail Kornilov Date: Fri, 22 May 2020 13:41:16 +0300 Subject: [PATCH] GitHub action: using DVM v0.3.1 release in integ tests (#125) * GitHub action: using DVM v0.3.1 release in integ tests * Logs removed --- .github/workflows/main.yml | 4 ++-- app/integ_test.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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"), )