faster, less verbose tests

pull/1/head
unknown 2014-09-04 10:02:29 +02:00
parent 7b610b34be
commit 1c93468c7e
3 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,5 @@
language: python language: python
python: python:
- "2.6"
- "2.7" - "2.7"
- "3.4" - "3.4"
install: install:

View File

@ -514,7 +514,7 @@ class PSBaseParser(object):
self.fillbuf() self.fillbuf()
self.charpos = self._parse1(self.buf, self.charpos) self.charpos = self._parse1(self.buf, self.charpos)
token = self._tokens.pop(0) token = self._tokens.pop(0)
logging.debug('nexttoken: (%r:%r)' % token) # logging.debug('nexttoken: (%r:%r)' % token)
return token return token

View File

@ -29,9 +29,13 @@ class TestDumpPDF():
run('../samples/nonfree/','dmca') run('../samples/nonfree/','dmca')
def test_3(self): def test_3(self):
nose.SkipTest()
return # takes too much time
run('../samples/nonfree/','f1040nr') run('../samples/nonfree/','f1040nr')
def test_4(self): def test_4(self):
nose.SkipTest()
return # takes too much time
run('../samples/nonfree/','i1040nr') run('../samples/nonfree/','i1040nr')
def test_5(self): def test_5(self):