Skip to content

Commit

Permalink
Turn off DeterministicTrivial test (see haskell#8356)
Browse files Browse the repository at this point in the history
  • Loading branch information
ffaf1 committed Aug 10, 2022
1 parent dd312ec commit ceef1ba
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,7 @@ main = cabalTest $ do
known <- liftIO (BS.readFile knownSdist)
unknown <- liftIO (BS.readFile mySdist)

assertEqual "hashes didn't match for sdist" (BS16.encode $ SHA256.hash known) (BS16.encode $ SHA256.hash unknown)
-- Not using `expectBroken` becuase the test succedes locally but
-- fails in CI.
skipIf "#8356" True $
assertEqual "hashes didn't match for sdist" (BS16.encode $ SHA256.hash known) (BS16.encode $ SHA256.hash unknown)

0 comments on commit ceef1ba

Please sign in to comment.