Skip to content

Commit

Permalink
ci: try fixing windows postgres module
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasjm committed Jul 26, 2024
1 parent 08d0a82 commit 1dab905
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions sandwich-contexts/lib/Test/Sandwich/Contexts/PostgreSQL.hs
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
{-# LANGUAGE CPP #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE TypeOperators #-}

#ifdef mingw32_HOST_OS
module Test.Sandwich.Contexts.PostgreSQL ()
#else

module Test.Sandwich.Contexts.PostgreSQL (
-- * Raw PostgreSQL via Nix (TCP socket)
introducePostgresViaNix
Expand Down Expand Up @@ -336,3 +341,5 @@ waitForPostgresDatabase (PostgresContainerOptions {..}) (containerName, p) = do
-- waitForSimpleQuery pc

return pc

#endif

0 comments on commit 1dab905

Please sign in to comment.