summaryrefslogtreecommitdiff
path: root/dev-haskell/stack/files/stack-2.5.1.1-disable-network-tests.patch
blob: d3890d16af9aaa420049ba1d8c4cadc4dc078c7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
diff --git a/src/test/Stack/ConfigSpec.hs b/src/test/Stack/ConfigSpec.hs
index 0b1b93f..d047d86 100644
--- a/src/test/Stack/ConfigSpec.hs
+++ b/src/test/Stack/ConfigSpec.hs
@@ -183,7 +183,7 @@ spec = beforeAll setup $ do
       boptsReconfigure `shouldBe` True
       boptsCabalVerbose `shouldBe` True
 
-    it "finds the config file in a parent directory" $ inTempDir $ do
+    xit "finds the config file in a parent directory" $ inTempDir $ do
       writeFile "package.yaml" "name: foo"
       writeFile (toFilePath stackDotYaml) sampleConfig
       parentDir <- getCurrentDirectory >>= parseAbsDir
@@ -194,7 +194,7 @@ spec = beforeAll setup $ do
         bc <- runRIO config $ withBuildConfig ask
         view projectRootL bc `shouldBe` parentDir
 
-    it "respects the STACK_YAML env variable" $ inTempDir $ do
+    xit "respects the STACK_YAML env variable" $ inTempDir $ do
       withSystemTempDir "config-is-here" $ \dir -> do
         let stackYamlFp = toFilePath (dir </> stackDotYaml)
         writeFile stackYamlFp sampleConfig