Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/scripts/process-differential-tests-report.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,9 @@ def main() -> None:
if status["status"] != "Failed":
continue

failure_reason: str = status["reason"].replace("\n", " ")
failure_reason: str = (
status["reason"].replace("\n", " ").replace("|", " ")
)

note: str = ""
modes_where_this_case_succeeded: set[ModeString] = (
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-evm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
repository: paritytech/revive-differential-tests
ref: 347dcb4488ac188ef7bddf6e4b4c44b389f881c4
ref: a6e4932a08b1ca231e4a02ca6e54e08a53f0e786
path: revive-differential-tests
submodules: recursive
- name: Installing Retester
Expand Down
10 changes: 10 additions & 0 deletions prdoc/pr_10298.prdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
title: Fix the `CodeNotFound` issue in PolkaVM tests
doc:
- audience: Runtime Dev
description: |-
# Description

This PR bumps the commit hash of the revive-differential-tests framework to a version that contains a fix for the `CodeNotFound` issue we've been seeing with PolkaVM. The framework now uploads the code of all the contracts prior to running the tests.

When CI runs for this PR we should observe that there's either no more `CodeNotFound` errors in PolkaVM tests or that it's greatly reduced.
crates: []
Loading