-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
CLI/Tests: Remove Fixtures #6799
Conversation
Codecov Report
@@ Coverage Diff @@
## master #6799 +/- ##
==========================================
+ Coverage 55.60% 55.79% +0.19%
==========================================
Files 457 224 -233
Lines 27440 14128 -13312
==========================================
- Hits 15257 7883 -7374
+ Misses 11083 5670 -5413
+ Partials 1100 575 -525 |
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.
lgtm overall 👍, this looks much cleaner
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.
putting x to prevent automerge, see comments above
@@ -1,7 +1,7 @@ | |||
#!/usr/bin/env bash | |||
set -e | |||
|
|||
PKGS=$(go list ./... | grep -v '/simapp' | grep -v '/cli_test') | |||
PKGS=$(go list ./... | grep -v '/simapp') |
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.
I'm not sure this script is used at all. It is mentioned in a Makefile's target but it does not seem to be used anymore.
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.
It's used by test-cover
, but that isn't used by anything. Let's remove it in a subsequent PR.
Co-authored-by: Amaury Martiny <[email protected]>
* remove fixtures * setup tests * update x/mint * cli: update x/staking commands * tests: convert x/staking CLI tests * tests: fix x/auth CLI tests * cli updates * fix buiild * fix build * Update x/gov/client/cli/cli_test.go Co-authored-by: Amaury Martiny <[email protected]> * remove GenerateOrBroadcastTx * move TestCLIQueryConn Co-authored-by: Federico Kunze <[email protected]> Co-authored-by: Amaury Martiny <[email protected]>
Description
x/mint
CLI tests to in-processx/staking
CLI tests to in-processx/gov
CLI tests to in-processref: #6571
Before we can merge this PR, please make sure that all the following items have been
checked off. If any of the checklist items are not applicable, please leave them but
write a little note why.
docs/
) or specification (x/<module>/spec/
)godoc
comments.Unreleased
section inCHANGELOG.md
Files changed
in the Github PR explorerCodecov Report
in the comment section below once CI passes