-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #216 from felixonmars/patch-1
Remove doctests from Setup.hs
- Loading branch information
Showing
1 changed file
with
0 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,7 @@ | ||
{-# LANGUAGE CPP #-} | ||
{-# OPTIONS_GHC -Wall #-} | ||
module Main (main) where | ||
|
||
#ifndef MIN_VERSION_cabal_doctest | ||
#define MIN_VERSION_cabal_doctest(x,y,z) 0 | ||
#endif | ||
|
||
#if MIN_VERSION_cabal_doctest(1,0,0) | ||
|
||
import Distribution.Extra.Doctest ( defaultMainWithDoctests ) | ||
main :: IO () | ||
main = defaultMainWithDoctests "doctests" | ||
|
||
#else | ||
|
||
#ifdef MIN_VERSION_Cabal | ||
-- If the macro is defined, we have new cabal-install, | ||
-- but for some reason we don't have cabal-doctest in package-db | ||
-- | ||
-- Probably we are running cabal sdist, when otherwise using new-build | ||
-- workflow | ||
#warning You are configuring this package without cabal-doctest installed. \ | ||
The doctests test-suite will not work as a result. \ | ||
To fix this, install cabal-doctest before configuring. | ||
#endif | ||
|
||
import Distribution.Simple | ||
|
||
main :: IO () | ||
main = defaultMain | ||
|
||
#endif |