From df9fc2b22bfb2f02729a837c83a842da9706a4b4 Mon Sep 17 00:00:00 2001 From: Nikita Volkov Date: Tue, 9 Dec 2014 12:19:53 +0300 Subject: [PATCH] Disable tests on all of my packages, since they already get tested with Travis --- Stackage/Config.hs | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Stackage/Config.hs b/Stackage/Config.hs index 1242288a..f2a72e3f 100644 --- a/Stackage/Config.hs +++ b/Stackage/Config.hs @@ -219,10 +219,13 @@ defaultExpectedFailures ghcVer requireHP = execWriter $ do -- Requires locally running server add "bloodhound" - -- Requires PostgreSQL running - add "postgresql-binary" - add "hasql" - add "hasql-postgres" + -- Too lazy to keep the test dependencies up to date + let names = + words "hasql hasql-postgres hasql-backend postgresql-binary" ++ + words "stm-containers focus list-t slave-thread partial-handler" ++ + words "neat-interpolation cases" ++ + words "base-prelude mtl-prelude" + in mapM_ add names -- https://github.com/gtk2hs/gtk2hs/issues/79 add "gio"