-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #149 from onomyprotocol/update_onomy_tests
Version 1.1.2
- Loading branch information
Showing
21 changed files
with
790 additions
and
965 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Package v1_1_2 is contains chain upgrade of the corresponding version. | ||
package v1_1_2 //nolint:revive,stylecheck // app version | ||
|
||
import ( | ||
sdk "github.com/cosmos/cosmos-sdk/types" | ||
"github.com/cosmos/cosmos-sdk/types/module" | ||
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" | ||
) | ||
|
||
// Name is migration name. | ||
const Name = "v1.1.2" | ||
|
||
// UpgradeHandler is an x/upgrade handler. | ||
func UpgradeHandler(_ sdk.Context, _ upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) { | ||
return vm, nil | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
|
||
This uses a [super_orchestrator](https://github.com/AaronKutch/super_orchestrator) based test harness system with some middle level functionality supplied by [onomy_tests](https://github.com/pendulum-labs/onomy_tests). All tests should be run from the repository root (not from the ./test directory or anywhere else) by `cargo r --bin [test binary name]`. Run `cargo doc --open` to find developer functions. Dockerfiles used by the tests are in `tests/dockerfiles`, and various resources are located in `tests/logs`, `tests/resources`, and `tests/dockerfiles/dockerfile_resources`. | ||
This uses a [super_orchestrator](https://github.com/AaronKutch/super_orchestrator) based test harness system with some middle level functionality supplied by [onomy_tests](https://github.com/pendulum-labs/onomy_tests). All tests should be run from the repository root (not from the ./test directory or anywhere else) by `cargo r --bin [test binary name]`. Run `cargo doc --open` to find developer functions. | ||
|
||
If a set of running containers stalls or you need to terminate them quickly, you do not want to Ctrl-C the main runner which will leave containers running in the background, instead run `cargo r --bin auto_exec_i -- --container-name [name of a container]` from a different terminal and it will find the container. You can Ctrl-C to terminate the container (and usually will terminate the rest if super_orchestrator was used correctly), and can Ctrl-C again to terminate auto_exec_i (or you can leave it to wait for another run of the container). |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__tmp.dockerfile |
This file contains 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
Oops, something went wrong.