-
Notifications
You must be signed in to change notification settings - Fork 352
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem: not using the latest SDK pre-release #341
Conversation
/runsim |
Simulation tests started and triggered by |
Codecov Report
@@ Coverage Diff @@
## master #341 +/- ##
=======================================
Coverage 10.25% 10.26%
=======================================
Files 35 35
Lines 5351 5349 -2
=======================================
Hits 549 549
+ Misses 4649 4648 -1
+ Partials 153 152 -1
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the vendorSha256
in default.nix
also needs to be updated.
1632882
to
0bdc23b
Compare
✅ |
will reopen when this gets resolved: cosmos/cosmos-sdk#8251 as it breaks the integration tests |
diff --git a/integration_tests/test_upgrade.py b/integration_tests/test_upgrade.py
index e292efa..1fe498f 100644
--- a/integration_tests/test_upgrade.py
+++ b/integration_tests/test_upgrade.py
@@ -16,6 +16,7 @@ from .utils import (
parse_events,
wait_for_block,
wait_for_block_time,
+ wait_for_new_blocks,
wait_for_port,
)
@@ -171,6 +172,8 @@ def test_manual_upgrade(cosmovisor_cluster):
cluster.reload_supervisor()
time.sleep(5) # FIXME the port seems still exists for a while after process stopped
wait_for_port(rpc_port(cluster.config["validators"][0]["base_port"]))
+ # wait for a new block to make sure chain started up
+ wait_for_new_blocks(cluster, 1)
target_height = cluster.block_height() + 15
print("upgrade height", target_height) |
Solution: bumped the dependencies to rc6 + workaround for gentx in integration tests
Solution: bumped the dependencies to rc6