mirror of
https://github.com/commercialhaskell/stackage.git
synced 2026-01-11 23:08:30 +01:00
scientific and bytestring
This commit is contained in:
parent
cf202d675d
commit
a03133c375
@ -152,6 +152,9 @@ defaultExpectedFailures ghcVer = execWriter $ do
|
||||
-- https://github.com/fpco/stackage/issues/226
|
||||
add "options"
|
||||
|
||||
-- Requires too high a bytestring
|
||||
when (ghcVer <= GhcMajorVersion 7 4) $ add "scientific"
|
||||
|
||||
where
|
||||
add = tell . singleton . PackageName
|
||||
|
||||
|
||||
@ -40,7 +40,11 @@ defaultSelectSettings version = SelectSettings
|
||||
Just v | Just range <- simpleParse "< 0.5", v `withinRange` range
|
||||
-> Set.singleton "containers-old"
|
||||
_ -> Set.empty)
|
||||
, disabledFlags = Set.fromList $ words "bytestring-in-base test-hlint"
|
||||
, disabledFlags = Set.fromList (words "bytestring-in-base test-hlint")
|
||||
`Set.union`
|
||||
(if version <= GhcMajorVersion 7 4
|
||||
then Set.singleton "bytestring-builder"
|
||||
else Set.empty)
|
||||
, allowedPackage = const $ Right ()
|
||||
, useGlobalDatabase = False
|
||||
, skippedTests =
|
||||
|
||||
Loading…
Reference in New Issue
Block a user