aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/python-pygit2-disable-network-tests.patch
blob: 5578e4c3757a253ce8262660c0cb402e62fa2fd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Disable tests trying to look up remote servers.

diff --git a/test/test_credentials.py b/test/test_credentials.py
--- a/test/test_credentials.py
+++ b/test/test_credentials.py
@@ -68,6 +68,7 @@ class CredentialCreateTest(utils.NoRepoTestCase):
         self.assertEqual((username, None, None, None), cred.credential_tuple)
 
 
+@unittest.skipIf(True, "network tests are not supported in Guix")
 class CredentialCallback(utils.RepoTestCase):
     def test_callback(self):
         class MyCallbacks(pygit2.RemoteCallbacks):
@@ -92,6 +93,7 @@ class CredentialCallback(utils.RepoTestCase):
         remote = self.repo.create_remote("github", url)
         self.assertRaises(TypeError, lambda: remote.fetch(callbacks=MyCallbacks()))
 
+@unittest.skipIf(True, "network tests are not supported in Guix")
 class CallableCredentialTest(utils.RepoTestCase):
 
     def test_user_pass(self):
diff --git a/test/test_repository.py b/test/test_repository.py
--- a/test/test_repository.py
+++ b/test/test_repository.py
@@ -573,6 +573,7 @@ class CloneRepositoryTest(utils.NoRepoTestCase):
         self.assertTrue('refs/remotes/custom_remote/master' in repo.listall_references())
         self.assertIsNotNone(repo.remotes["custom_remote"])
 
+    @unittest.skipIf(True, "network tests are not supported in Guix")
     def test_clone_with_credentials(self):
         repo = clone_repository(
             "https://bitbucket.org/libgit2/testgitrepository.git",
diff --git a/test/test_submodule.py b/test/test_submodule.py
--- a/test/test_submodule.py
+++ b/test/test_submodule.py
@@ -42,6 +42,7 @@ SUBM_PATH = 'submodule'
 SUBM_URL = 'https://github.com/libgit2/pygit2'
 SUBM_HEAD_SHA = '819cbff552e46ac4b8d10925cc422a30aa04e78e'
 
+@unittest.skipIf(True, "network tests are not supported in Guix")
 class SubmoduleTest(utils.SubmoduleRepoTestCase):
 
     def test_lookup_submodule(self):