mirror of
https://github.com/commercialhaskell/stackage.git
synced 2026-01-14 08:18:30 +01:00
Skip some more tests
This commit is contained in:
parent
ffa94ffc26
commit
f8304eafdd
@ -178,7 +178,7 @@ loadPackageDB settings coreMap core deps = do
|
||||
, if skipTests p
|
||||
then mempty
|
||||
else mconcat $ map (go gpd . snd) $ condTestSuites gpd
|
||||
, mconcat $ map (go gpd . snd) $ condBenchmarks gpd
|
||||
-- FIXME , mconcat $ map (go gpd . snd) $ condBenchmarks gpd
|
||||
], not $ null $ condTestSuites gpd
|
||||
, Set.fromList $ map depName $ libExeBuildInfo gpd
|
||||
, Set.fromList $ map depName $ testBenchBuildInfo gpd
|
||||
|
||||
@ -43,7 +43,10 @@ defaultSelectSettings version = SelectSettings
|
||||
, disabledFlags = Set.fromList $ words "bytestring-in-base test-hlint"
|
||||
, allowedPackage = const $ Right ()
|
||||
, useGlobalDatabase = False
|
||||
, skippedTests = empty
|
||||
, skippedTests =
|
||||
if version >= GhcMajorVersion 7 8
|
||||
then Set.singleton (PackageName "punycode") -- pulls in encoding
|
||||
else Set.empty
|
||||
, selectGhcVersion = version
|
||||
, selectTarballDir = "patching/tarballs"
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user