-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
The parallel test runner seems to swallow the standard output. See the example below.
test_haas_parallel.py:
import unittest
class TestHaas(unittest.TestCase):
def test_haas_one(self):
print('one')
def test_haas_two(self):
print('two')
Running haas
with the default test runner displays the one
and two
messages as expected:
$ haas test_haas_parallel.py
one
.two
.
----------------------------------------------------------------------
Ran 2 tests in 0.000s
OK
Running haas
with the --runner parallel
option makes them disappear.
$ haas --runner parallel test_haas_parallel.py
..
----------------------------------------------------------------------
Ran 2 tests in 0.121s
OK
Python 3.6.5
haas
0.8.0
stevedore
1.29.0
Metadata
Metadata
Assignees
Labels
No labels