From be224c8a94c0e7b2749cd7105d4d8e60428ff144 Mon Sep 17 00:00:00 2001 From: Nemanja0x Date: Mon, 13 Mar 2023 09:49:57 +0100 Subject: [PATCH] lower case of env variable values --- .github/workflows/e2e-polybft.yml | 2 +- .github/workflows/property-polybft.yml | 2 +- Makefile | 4 ++-- e2e-polybft/framework/test-cluster.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/e2e-polybft.yml b/.github/workflows/e2e-polybft.yml index 26fbffe31c..a7ec5cb59f 100644 --- a/.github/workflows/e2e-polybft.yml +++ b/.github/workflows/e2e-polybft.yml @@ -14,7 +14,7 @@ jobs: env: E2E_TESTS: true E2E_LOGS: true - E2E_TESTS_TYPE: 'E2E Integration' + E2E_TESTS_TYPE: 'e2e integration' CI_VERBOSE: true steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/property-polybft.yml b/.github/workflows/property-polybft.yml index 8d21508f20..daf57faaa9 100644 --- a/.github/workflows/property-polybft.yml +++ b/.github/workflows/property-polybft.yml @@ -13,7 +13,7 @@ jobs: env: E2E_TESTS: true E2E_LOGS: true - E2E_TESTS_TYPE: 'Property Based' + E2E_TESTS_TYPE: 'property based' CI_VERBOSE: true steps: - uses: actions/checkout@v3 diff --git a/Makefile b/Makefile index 8ce8254e74..a44567b237 100644 --- a/Makefile +++ b/Makefile @@ -54,12 +54,12 @@ test-e2e: test-e2e-polybft: # We can not build with race because of a bug in boltdb dependency go build -o artifacts/polygon-edge . - env EDGE_BINARY=${PWD}/artifacts/polygon-edge E2E_TESTS=true E2E_LOGS=true E2E_TESTS_TYPE=Integration go test -v -timeout=30m ./e2e-polybft/e2e/... + env EDGE_BINARY=${PWD}/artifacts/polygon-edge E2E_TESTS=true E2E_LOGS=true E2E_TESTS_TYPE=integration go test -v -timeout=30m ./e2e-polybft/e2e/... test-property-polybft: # We can not build with race because of a bug in boltdb dependency go build -o artifacts/polygon-edge . - env EDGE_BINARY=${PWD}/artifacts/polygon-edge E2E_TESTS=true E2E_LOGS=true E2E_TESTS_TYPE=Property go test -v -timeout=30m ./e2e-polybft/property/... + env EDGE_BINARY=${PWD}/artifacts/polygon-edge E2E_TESTS=true E2E_LOGS=true E2E_TESTS_TYPE=property go test -v -timeout=30m ./e2e-polybft/property/... .PHONY: compile-core-contracts compile-core-contracts: diff --git a/e2e-polybft/framework/test-cluster.go b/e2e-polybft/framework/test-cluster.go index 2872f892ae..cf1b935e80 100644 --- a/e2e-polybft/framework/test-cluster.go +++ b/e2e-polybft/framework/test-cluster.go @@ -251,7 +251,7 @@ func NewTestCluster(t *testing.T, validatorsCount int, opts ...ClusterOption) *T if !isTrueEnv(envE2ETestsEnabled) { testType := os.Getenv(envE2ETestsType) if testType == "" { - testType = "Integration" + testType = "integration" } t.Skip(fmt.Sprintf("%s tests are disabled.", testType))