Codebase list dnspython / f73abd5
change version to 1.13.0-2 (UNRELEASED) Revert disabling of zone tests Scott Kitterman 7 years ago
5 changed file(s) with 8 addition(s) and 61 deletion(s). Raw diff Collapse all Expand all
00 # see git-dpm(1) from git-dpm package
1 ca73791d4bd588b14b1a3fb40bc641b327fa1b70
2 ca73791d4bd588b14b1a3fb40bc641b327fa1b70
1 8d7a975dc0c58a57c155726305be922a7b5cb134
2 8d7a975dc0c58a57c155726305be922a7b5cb134
33 8d7a975dc0c58a57c155726305be922a7b5cb134
44 8d7a975dc0c58a57c155726305be922a7b5cb134
55 dnspython_1.13.0.orig.tar.gz
0 dnspython (1.13.0-2) UNRELEASED; urgency=medium
1
2 * Revert disabling of zone tests
3
4 -- Scott Kitterman <scott@kitterman.com> Wed, 25 May 2016 11:11:09 -0400
5
06 dnspython (1.13.0-1) unstable; urgency=medium
17
28 [ Ondřej Nový ]
+0
-53
debian/patches/0001-Temporarily-disable-non-working-zone-tests.patch less more
0 From ca73791d4bd588b14b1a3fb40bc641b327fa1b70 Mon Sep 17 00:00:00 2001
1 From: Scott Kitterman <scott@kitterman.com>
2 Date: Wed, 25 May 2016 02:12:17 -0400
3 Subject: Temporarily disable non-working zone tests.
4
5 ---
6 tests/test_zone.py | 5 +++++
7 1 file changed, 5 insertions(+)
8
9 diff --git a/tests/test_zone.py b/tests/test_zone.py
10 index 9e3fd2c..1584e7e 100644
11 --- a/tests/test_zone.py
12 +++ b/tests/test_zone.py
13 @@ -108,6 +108,7 @@ def _rdata_sort(a):
14
15 class ZoneTestCase(unittest.TestCase):
16
17 + @unittest.skip("temporarily skipping")
18 def testFromFile1(self):
19 z = dns.zone.from_file(here('example'), 'example')
20 ok = False
21 @@ -120,6 +121,7 @@ class ZoneTestCase(unittest.TestCase):
22 os.unlink(here('example1.out'))
23 self.failUnless(ok)
24
25 + @unittest.skip("temporarily skipping")
26 def testFromFile2(self):
27 z = dns.zone.from_file(here('example'), 'example', relativize=False)
28 ok = False
29 @@ -132,6 +134,7 @@ class ZoneTestCase(unittest.TestCase):
30 os.unlink(here('example2.out'))
31 self.failUnless(ok)
32
33 + @unittest.skip("temporarily skipping")
34 def testToText(self):
35 z = dns.zone.from_file(here('example'), 'example')
36 ok = False
37 @@ -157,6 +160,7 @@ class ZoneTestCase(unittest.TestCase):
38 f.write(u'\n')
39 self.assertEqual(f.getvalue(), example_text_output)
40
41 + @unittest.skip("temporarily skipping")
42 def testTorture1(self):
43 #
44 # Read a zone containing all our supported RR types, and
45 @@ -401,6 +405,7 @@ class ZoneTestCase(unittest.TestCase):
46 relativize=True)
47 self.failUnlessRaises(dns.zone.NoNS, bad)
48
49 + @unittest.skip("temporarily skipping")
50 def testInclude(self):
51 z1 = dns.zone.from_text(include_text, 'example.', relativize=True,
52 allow_include=True)
+0
-1
debian/patches/series less more
0 0001-Temporarily-disable-non-working-zone-tests.patch
107107
108108 class ZoneTestCase(unittest.TestCase):
109109
110 @unittest.skip("temporarily skipping")
111110 def testFromFile1(self):
112111 z = dns.zone.from_file(here('example'), 'example')
113112 ok = False
120119 os.unlink(here('example1.out'))
121120 self.failUnless(ok)
122121
123 @unittest.skip("temporarily skipping")
124122 def testFromFile2(self):
125123 z = dns.zone.from_file(here('example'), 'example', relativize=False)
126124 ok = False
133131 os.unlink(here('example2.out'))
134132 self.failUnless(ok)
135133
136 @unittest.skip("temporarily skipping")
137134 def testToText(self):
138135 z = dns.zone.from_file(here('example'), 'example')
139136 ok = False
159156 f.write(u'\n')
160157 self.assertEqual(f.getvalue(), example_text_output)
161158
162 @unittest.skip("temporarily skipping")
163159 def testTorture1(self):
164160 #
165161 # Read a zone containing all our supported RR types, and
404400 relativize=True)
405401 self.failUnlessRaises(dns.zone.NoNS, bad)
406402
407 @unittest.skip("temporarily skipping")
408403 def testInclude(self):
409404 z1 = dns.zone.from_text(include_text, 'example.', relativize=True,
410405 allow_include=True)