Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Commit

Permalink
env variables values
Browse files Browse the repository at this point in the history
  • Loading branch information
Nemanja0x committed Mar 13, 2023
1 parent 722d4c7 commit 0ddef0e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-polybft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
env:
E2E_TESTS: true
E2E_LOGS: true
E2E_TESTS_TYPE: 'E2E Integration'
E2E_TESTS_TYPE: 'integration'
CI_VERBOSE: true
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/property-polybft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
env:
E2E_TESTS: true
E2E_LOGS: true
E2E_TESTS_TYPE: 'Property Based'
E2E_TESTS_TYPE: 'property'
CI_VERBOSE: true
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion e2e-polybft/framework/test-cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 0ddef0e

Please sign in to comment.