1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

haskell-holy-project: disable the test suite to fix the build

The test suite tries to access the network:

 | Test suite Tests: RUNNING...
 | All Tests
 |   [...]
 |   GithubAPI
 |     Yann:                              FAIL
 |       Exception: FailedConnectionException2 "api.github.com" 443 True getProtocolByName: does not exist (no such protocol name: tcp)
 |     Jasper:                            FAIL
 |       Exception: FailedConnectionException2 "api.github.com" 443 True getProtocolByName: does not exist (no such protocol name: tcp)
 |
 | 2 out of 16 tests failed (0.66s)
 | Test suite Tests: FAIL
This commit is contained in:
Peter Simons 2014-09-12 10:33:31 +02:00
parent 30c918e409
commit 5a595e7119

View file

@ -21,6 +21,7 @@ cabal.mkDerivation (self: {
Cabal HUnit QuickCheck smallcheck tasty tastyHunit tastyQuickcheck
tastySmallcheck
];
doCheck = false;
meta = {
homepage = "http://github.com/yogsototh/holy-project";
description = "Start your Haskell project with cabal, git and tests";