File tree Expand file tree Collapse file tree 5 files changed +6
-10
lines changed Expand file tree Collapse file tree 5 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ jobs:
317
317
- name : Run Tests
318
318
uses : smartcontractkit/.github/actions/ctf-run-tests@91995e4dd053581696702eec503ce2d2c8b8e753 # 0.6.1
319
319
with :
320
- test_command_to_run : cd ./integration-tests && go test -count=1 -run TestSolanaOCRV2Smoke -json $(args) ./smoke 2>&1 | tee /tmp/gotest.log | gotestloghelper -ci=true -singlepackage=true -hidepassingtests=false -hidepassinglogs=false
320
+ test_command_to_run : cd ./integration-tests && go test -count=1 -run TestSolanaOCRV2Smoke $(args) ./smoke 2>&1 | tee /tmp/gotest.log
321
321
test_download_vendor_packages_command : cd ./integration-tests && go mod download
322
322
test_config_override_base64 : ${{ env.BASE64_CONFIG_OVERRIDE }}
323
323
download_contract_artifacts_path : ${{ env.CONTRACT_ARTIFACTS_PATH }}
@@ -381,7 +381,7 @@ jobs:
381
381
- name : Run Upgrade Test
382
382
uses : smartcontractkit/.github/actions/ctf-run-tests@91995e4dd053581696702eec503ce2d2c8b8e753 # 0.6.1
383
383
with :
384
- test_command_to_run : cd ./integration-tests && go test -count=1 -run TestSolanaOCRV2UpgradeSmoke -json $(args) ./smoke 2>&1 | tee /tmp/gotest.log | gotestloghelper -ci=true -singlepackage=true -hidepassingtests=false -hidepassinglogs=false
384
+ test_command_to_run : cd ./integration-tests && go test -count=1 -run TestSolanaOCRV2UpgradeSmoke $(args) ./smoke 2>&1 | tee /tmp/gotest.log
385
385
test_download_vendor_packages_command : cd ./integration-tests && go mod download
386
386
test_config_override_base64 : ${{ env.BASE64_CONFIG_OVERRIDE }}
387
387
download_contract_artifacts_path : ${{ env.CONTRACT_ARTIFACTS_PATH }}
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ jobs:
147
147
- name : Run Tests
148
148
uses : smartcontractkit/.github/actions/ctf-run-tests@91995e4dd053581696702eec503ce2d2c8b8e753 # 0.6.1
149
149
with :
150
- test_command_to_run : cd ./integration-tests && go test -count=1 -run TestSolanaOCRV2Smoke/embedded -json $(args) ./smoke 2>&1 | tee /tmp/gotest.log | gotestloghelper -ci -singlepackage
150
+ test_command_to_run : cd ./integration-tests && go test -count=1 -run TestSolanaOCRV2Smoke/embedded $(args) ./smoke 2>&1 | tee /tmp/gotest.log
151
151
test_download_vendor_packages_command : cd ./integration-tests && go mod download
152
152
test_config_override_base64 : ${{ env.BASE64_CONFIG_OVERRIDE }}
153
153
test_secrets_override_base64 : ${{ secrets[inputs.test_secrets_override_key] }}
Original file line number Diff line number Diff line change @@ -154,9 +154,6 @@ jobs:
154
154
check-latest : true
155
155
cache-dependency-path : " ./integration-tests/go.sum"
156
156
157
- - name : Install gotestloghelper
158
- run : go install github.com/smartcontractkit/chainlink-testing-framework/tools/gotestloghelper@latest
159
-
160
157
- name : Install Solana CLI
161
158
run : ../scripts/install-solana-ci.sh
162
159
Original file line number Diff line number Diff line change 94
94
- name : Run Tests
95
95
uses : smartcontractkit/chainlink-github-actions/chainlink-testing-framework/run-tests@fdaf56b1df7248d18e30ad09982d03ec67d6b71c # v2.3.29
96
96
with :
97
- test_command_to_run : cd ./integration-tests && go test -count=1 -run TestSolanaOCRV2Soak/embedded -json $(args) ./soak 2>&1 | tee /tmp/gotest.log | gotestloghelper -ci -singlepackage
97
+ test_command_to_run : cd ./integration-tests && go test -count=1 -run TestSolanaOCRV2Soak/embedded $(args) ./soak 2>&1 | tee /tmp/gotest.log
98
98
test_download_vendor_packages_command : cd ./integration-tests && go mod download
99
99
test_config_override_base64 : ${{ env.BASE64_CONFIG_OVERRIDE }}
100
100
test_secrets_override_base64 : ${{ secrets[inputs.test_secrets_override_key] }}
Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ ifeq ($(OSFLAG),$(OSX))
47
47
asdf plugin add golangci-lint || true
48
48
asdf plugin add mockery || true
49
49
asdf install
50
- go install github.com/smartcontractkit/chainlink-testing-framework/tools/gotestloghelper@latest
51
50
endif
52
51
ifeq ($(OSFLAG ) ,$(LINUX ) )
53
52
ifneq ($(CI ) ,true)
@@ -102,11 +101,11 @@ test_relay_unit:
102
101
103
102
test_smoke :
104
103
cd ./integration-tests && \
105
- SELECTED_NETWORKS=SIMULATED go test -timeout 1h -count=1 -json $(args ) -run TestSolanaOCRV2Smoke ./smoke 2>&1 | tee /tmp/gotest.log | gotestloghelper -json -tlogprefix -singlepackage -color
104
+ SELECTED_NETWORKS=SIMULATED go test -timeout 1h -count=1 $(args ) -run TestSolanaOCRV2Smoke ./smoke 2>&1 | tee /tmp/gotest.log
106
105
107
106
test_relay_integration :
108
107
cd ./integration-tests && \
109
- go test -timeout 20m -count=1 -json $(args ) ./relayinterface/... 2>&1 | tee /tmp/gotest.log | gotestloghelper -json -tlogprefix -singlepackage -color
108
+ go test -timeout 20m -count=1 $(args ) ./relayinterface/... 2>&1 | tee /tmp/gotest.log
110
109
111
110
.PHONY : gomods
112
111
gomods : # # Install gomods
You can’t perform that action at this time.
0 commit comments