Skip to content
This repository was archived by the owner on Aug 18, 2020. It is now read-only.

Commit ac4f3ac

Browse files
authored
Merge pull request #3537 from input-output-hk/erikd/wallet-integration
Disable the 'runActionCheck' wallet integration test
2 parents 9c71e1e + e2aa9b8 commit ac4f3ac

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

wallet-new/integration/Main.hs

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,17 @@ main = do
6363
printT "Starting deterministic tests."
6464
hspec $ deterministicTests wRef walletClient manager
6565

66-
walletState <- initialWalletState walletClient
66+
printT $ "The 'runActionCheck' tests were disabled because they were highly un-reliable."
67+
when False $ do
68+
walletState <- initialWalletState walletClient
6769

68-
printT $ "Initial wallet state: " <> show walletState
70+
printT $ "Initial wallet state: " <> show walletState
6971

70-
-- some monadic fold or smth similar
71-
void $ runActionCheck
72-
walletClient
73-
walletState
74-
actionDistribution
72+
-- some monadic fold or smth similar
73+
void $ runActionCheck
74+
walletClient
75+
walletState
76+
actionDistribution
7577
where
7678
orFail :: MonadFail m => Either String a -> m a
7779
orFail =

0 commit comments

Comments
 (0)