You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately geventmp can't helps unittest-parallel to finish it's work with gevent.
Tests are executed successfully but there is a hang after the tests execution.
Here two simple tests files:
tests/# cat test_1.py
import unittest
import logging
class TestCompute1(unittest.TestCase):
def test_compute_1(self):
logging.getLogger().warning("test_compute_1 start")
tests/# cat test_1.py
import unittest
import logging
class TestCompute2(unittest.TestCase):
def test_compute_2(self):
logging.getLogger().warning("test_compute_2 start")
Hello,
there is https://github.com/craigahobbs/unittest-parallel (https://pypi.org/project/unittest-parallel/) module using multiprocessing and has a very small code base https://github.com/craigahobbs/unittest-parallel/blob/main/src/unittest_parallel/main.py
Unfortunately geventmp can't helps unittest-parallel to finish it's work with gevent.
Tests are executed successfully but there is a hang after the tests execution.
Here two simple tests files:
tests/# cat test_1.py
tests/# cat test_1.py
Here is a Dockerfile:
The text was updated successfully, but these errors were encountered: