Skip to content

Commit 028d93b

Browse files
committed
rm panicing gotestloghelper
1 parent 53ab9ca commit 028d93b

File tree

5 files changed

+6
-10
lines changed

5 files changed

+6
-10
lines changed

.github/workflows/e2e_custom_cl.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ jobs:
317317
- name: Run Tests
318318
uses: smartcontractkit/.github/actions/ctf-run-tests@91995e4dd053581696702eec503ce2d2c8b8e753 # 0.6.1
319319
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
321321
test_download_vendor_packages_command: cd ./integration-tests && go mod download
322322
test_config_override_base64: ${{ env.BASE64_CONFIG_OVERRIDE }}
323323
download_contract_artifacts_path: ${{ env.CONTRACT_ARTIFACTS_PATH }}
@@ -381,7 +381,7 @@ jobs:
381381
- name: Run Upgrade Test
382382
uses: smartcontractkit/.github/actions/ctf-run-tests@91995e4dd053581696702eec503ce2d2c8b8e753 # 0.6.1
383383
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
385385
test_download_vendor_packages_command: cd ./integration-tests && go mod download
386386
test_config_override_base64: ${{ env.BASE64_CONFIG_OVERRIDE }}
387387
download_contract_artifacts_path: ${{ env.CONTRACT_ARTIFACTS_PATH }}

.github/workflows/e2e_testnet_daily.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
- name: Run Tests
148148
uses: smartcontractkit/.github/actions/ctf-run-tests@91995e4dd053581696702eec503ce2d2c8b8e753 # 0.6.1
149149
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
151151
test_download_vendor_packages_command: cd ./integration-tests && go mod download
152152
test_config_override_base64: ${{ env.BASE64_CONFIG_OVERRIDE }}
153153
test_secrets_override_base64: ${{ secrets[inputs.test_secrets_override_key] }}

.github/workflows/rust.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,6 @@ jobs:
154154
check-latest: true
155155
cache-dependency-path: "./integration-tests/go.sum"
156156

157-
- name: Install gotestloghelper
158-
run: go install github.com/smartcontractkit/chainlink-testing-framework/tools/gotestloghelper@latest
159-
160157
- name: Install Solana CLI
161158
run: ../scripts/install-solana-ci.sh
162159

.github/workflows/soak.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
- name: Run Tests
9595
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/run-tests@fdaf56b1df7248d18e30ad09982d03ec67d6b71c # v2.3.29
9696
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
9898
test_download_vendor_packages_command: cd ./integration-tests && go mod download
9999
test_config_override_base64: ${{ env.BASE64_CONFIG_OVERRIDE }}
100100
test_secrets_override_base64: ${{ secrets[inputs.test_secrets_override_key] }}

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ ifeq ($(OSFLAG),$(OSX))
4747
asdf plugin add golangci-lint || true
4848
asdf plugin add mockery || true
4949
asdf install
50-
go install github.com/smartcontractkit/chainlink-testing-framework/tools/gotestloghelper@latest
5150
endif
5251
ifeq ($(OSFLAG),$(LINUX))
5352
ifneq ($(CI),true)
@@ -102,11 +101,11 @@ test_relay_unit:
102101

103102
test_smoke:
104103
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
106105

107106
test_relay_integration:
108107
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
110109

111110
.PHONY: gomods
112111
gomods: ## Install gomods

0 commit comments

Comments
 (0)