Skip to content

Commit

Permalink
fix: stop running the malicious integration test during short mode (#…
Browse files Browse the repository at this point in the history
…2163)

## Overview

the testnode is still hitting the race detector #1369, so we aren't
running those integration tests with the race detector

## Checklist

- [x] New and updated code has appropriate documentation
- [x] New and updated code has new and/or updated testing
- [x] Required CI checks are passing
- [x] Visual proof for any user facing features like CLI or
documentation updates
- [ ] Linked issues closed with keywords
  • Loading branch information
evan-forbes committed Aug 2, 2023
1 parent 912e5e9 commit f03ac51
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/util/malicious/app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ func TestOutOfOrderNMT(t *testing.T) {
// TestMaliciousTestNode runs a single validator network using the malicious
// node. This will begin to produce out of order blocks after block height of 5.
func TestMaliciousTestNode(t *testing.T) {
if testing.Short() {
t.Skip("skipping MaliciousTestNode in short mode.")
}
accounts := testfactory.RandomAccountNames(5)
cfg := OutOfOrderNamespaceConfig(5).
WithAccounts(accounts)
Expand Down

0 comments on commit f03ac51

Please sign in to comment.