Skip to content

Commit 319a23d

Browse files
committed
Merge pull request #48 from EdwardBetts/patch-3
Skip another pickle test if dill isn't installed.
2 parents 8b33b02 + 8ff89f5 commit 319a23d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ def test_len(self):
7777
hn = HumanName("John Doe")
7878
self.m(len(hn), 2, hn)
7979

80+
@unittest.skipUnless(dill,"requires python-dill module to test pickling")
8081
def test_config_pickle(self):
8182
C = Constants()
8283
self.assertTrue(dill.pickles(C))

0 commit comments

Comments
 (0)