Skip to content

Commit b14706b

Browse files
author
Joshua Gomez
committed
Removed test on bag-info hash. Changing date makes this an obvious source of errors. Sorry for the brain fart. -JG
Also adding Python3 to travis.yml
1 parent 18bd0a5 commit b14706b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ language: python
22
python:
33
- "2.7"
44
- "2.6"
5+
- "3.1"
6+
- "3.2"
7+
- "3.3"
8+
- "3.4"
59
script: python setup.py test
610
install:
711
# this can go away when this is resolved satisfactorily

test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,6 @@ def test_validation_error_details(self):
151151
self.assertTrue(isinstance(baginfo_error, bagit.ChecksumMismatch))
152152
self.assertEqual(baginfo_error.algorithm, 'md5')
153153
self.assertEqual(baginfo_error.path, 'bag-info.txt')
154-
self.assertEqual(baginfo_error.expected, '6a2e564aec5fcfb003023e09d3a065db')
155154
self.assertTrue("bag-info.txt does not exist" in baginfo_error.found)
156155
if not got_exception:
157156
self.fail("didn't get BagValidationError")

0 commit comments

Comments
 (0)