Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #103409 > unrolled thread

nosepipe error

Started byDan Stromberg <drsalists@gmail.com>
First post2016-02-23 09:36 -0800
Last post2016-02-23 09:36 -0800
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python


Contents

  nosepipe error Dan Stromberg <drsalists@gmail.com> - 2016-02-23 09:36 -0800

#103409 — nosepipe error

FromDan Stromberg <drsalists@gmail.com>
Date2016-02-23 09:36 -0800
Subjectnosepipe error
Message-ID<mailman.74.1456248967.20994.python-list@python.org>
Hi folks.

I'm using (or trying to use) nosepipe to get nose test isolation; I'm
working on an almost-big test suite, and the tests appear to be
lacking test isolation.

I'm encountering a bug in nosepipe:
======================================================================
ERROR: testCreateFileMux (testFilemux.TestFilemux)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/dstromberg/virtualenvs/dev/lib/python2.7/site-packages/nose/case.py",
line 133, in run
    self.runTest(result)
  File "/home/dstromberg/virtualenvs/dev/lib/python2.7/site-packages/nose/case.py",
line 151, in runTest
    test(result)
  File "/home/dstromberg/virtualenvs/dev/lib/python2.7/site-packages/nosepipe.py",
line 179, in __call__
    (header + data).decode("latin1"))
Exception: short message body (want 1433299041, got 80)
Something went wrong
Message: Unhandled exception in thread started by
sys.excepthook is missing
lost sys.stderr

That 1433299041 looks like ASCII:
>>> hex(1433299041)
'0x556e6861'
>>> chr(0x55) + chr(0x6e) + chr(0x68) + chr(0x61)
'Unha'

...but I'm not sure where to go with that from there.

The authors appear to be: John J. Lee, Dan McCombs, and Vadim Markovtsev.

I've e-mailed John and Dan - though that was only last night.  I don't
know how to get in touch with Vadim.

Are there any nosepipe users out there?  Does anyone know how best to
reach John, Dan and/or Vadim?

Thanks.

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web