mirror of
https://github.com/commercialhaskell/stackage.git
synced 2026-02-24 03:57:54 +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
|
, if skipTests p
|
||||||
then mempty
|
then mempty
|
||||||
else mconcat $ map (go gpd . snd) $ condTestSuites gpd
|
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
|
], not $ null $ condTestSuites gpd
|
||||||
, Set.fromList $ map depName $ libExeBuildInfo gpd
|
, Set.fromList $ map depName $ libExeBuildInfo gpd
|
||||||
, Set.fromList $ map depName $ testBenchBuildInfo gpd
|
, Set.fromList $ map depName $ testBenchBuildInfo gpd
|
||||||
|
|||||||
@ -43,7 +43,10 @@ defaultSelectSettings version = SelectSettings
|
|||||||
, disabledFlags = Set.fromList $ words "bytestring-in-base test-hlint"
|
, disabledFlags = Set.fromList $ words "bytestring-in-base test-hlint"
|
||||||
, allowedPackage = const $ Right ()
|
, allowedPackage = const $ Right ()
|
||||||
, useGlobalDatabase = False
|
, useGlobalDatabase = False
|
||||||
, skippedTests = empty
|
, skippedTests =
|
||||||
|
if version >= GhcMajorVersion 7 8
|
||||||
|
then Set.singleton (PackageName "punycode") -- pulls in encoding
|
||||||
|
else Set.empty
|
||||||
, selectGhcVersion = version
|
, selectGhcVersion = version
|
||||||
, selectTarballDir = "patching/tarballs"
|
, selectTarballDir = "patching/tarballs"
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user