Skip to content

Commit

Permalink
Merge #2714
Browse files Browse the repository at this point in the history
2714: Mark MVar DB properties pending on macOS r=Anviking a=Anviking

# Issue Number

#2472 / ADP-970


# Overview

<!-- Detail in a few bullet points the work accomplished in this PR -->

- [x] Make `MVar` DB properties pending on macOS (see commit message)

# Comments

<!--
Don't forget to:

 ✓ Self-review your changes to make sure nothing unexpected slipped through
 ✓ Assign yourself to the PR
 ✓ Assign one or several reviewer(s)
 ✓ Jira will detect and link to this PR once created, but you can also link this PR in the description of the corresponding ticket
 ✓ Acknowledge any changes required to the Wiki
 ✓ Finally, in the PR description delete any empty sections and all text commented in <!--, so that this text does not appear in merge commit messages.
-->


Co-authored-by: Johannes Lund <johannes.lund@iohk.io>
  • Loading branch information
iohk-bors[bot] and Anviking committed Jun 16, 2021
2 parents 6007796 + 96b6cc7 commit 89d0a33
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lib/core/test/unit/Cardano/Wallet/DB/MVarSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,16 @@ import Test.Hspec
( Spec, before, describe )
import Test.QuickCheck
( Arbitrary (..) )
import Test.Utils.Darwin
( pendingOnMacOS )

import qualified Cardano.Wallet.DB.MVar as MVar

spec :: Spec
spec = before (MVar.newDBLayer @IO @(SeqState 'Mainnet ShelleyKey) ti) $
describe "MVar" properties
spec =
before (pendingOnMacOS "#2472: timeouts in hydra mac builds")
$ before (MVar.newDBLayer @IO @(SeqState 'Mainnet ShelleyKey) ti)
$ describe "MVar" properties
where
ti = dummyTimeInterpreter

Expand Down

0 comments on commit 89d0a33

Please sign in to comment.