fix: Fix TestFullAppSimulation test and *disable* E2E tests#11
Merged
pbukva merged 5 commits intofeat/dropping_sudo_admins_conceptfrom May 8, 2026
Merged
fix: Fix TestFullAppSimulation test and *disable* E2E tests#11pbukva merged 5 commits intofeat/dropping_sudo_admins_conceptfrom
pbukva merged 5 commits intofeat/dropping_sudo_admins_conceptfrom
Conversation
Disabling the test due to dual import of ibc-go module v8@v8.4.0 and v10@v10.3.0, what causes conflicts when each version of ibc-go module registers the very same set of errors in the *GLOBAL* scope via `errorsmod.Register(...)`. This happens due to the fact, that this particular test depends on the strangelove-ventures/interchaintest/v8@v8.8.1 module, which depends on ibc-go/v8@v8.4.0, however our fetchai/tokenfactory depends on ibc-go/v10@v10.3.0. At the moment, this is hard to resolve, since the strangelove-ventures/interchaintest would need to be forked, and updated so it would depend on CosmWasm/wasmd@v0.61.2, CosmWasm/wasmvm/v3@v3.0.0 and ibc-go/v10@v10.3.0, what is non-trivial task, hence disabling this test temporarily. TODO(pb): The test shall be re-enabled once the issue with the strangelove-ventures/interchaintest module is resolved.
MissingNO57
added a commit
that referenced
this pull request
May 8, 2026
)" This reverts commit 52f3b0d.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Temporarily Disabling due to dual import of
ibc-gomodulev8@v8.4.0andv10@v10.3.0, what causes conflicts when each version of theibc-gomodule registers the very same set of errors in the GLOBAL scope viaerrorsmod.Register(...).This happens due to the fact, that this particular test depends on the
strangelove-ventures/interchaintest/v8@v8.8.1module, which depends onibc-go/v8@v8.4.0, however ourfetchai/tokenfactory depends on
ibc-go/v10@v10.3.0.At the moment, this is hard to resolve, since the strangelove-ventures/interchaintest would need to be forked,
and updated so it would depend on
CosmWasm/wasmd@v0.61.2,CosmWasm/wasmvm/v3@v3.0.0andibc-go/v10@v10.3.0, what is non-trivial task, hence disabling this test temporarily.