From e3b09c0e6a2756a2fdb8f1f9f2f9ed53483cc8e8 Mon Sep 17 00:00:00 2001
From: Martin Bauer <martin.bauer@fau.de>
Date: Tue, 21 Jan 2020 21:57:32 +0100
Subject: [PATCH] MRT test seems to cause Visual Studio compiler on CI system
 to hang forever

- works on newer VS compiler locally
- comment this test out until CI system is properly updated
---
 setup.py | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/setup.py b/setup.py
index 0f158cb..2c67c66 100644
--- a/setup.py
+++ b/setup.py
@@ -10,7 +10,7 @@ from version_from_git import version_number_from_git
 
 
 quick_tests = [
-    'test_serial_scenarios.test_ldc_mrt',
+    #'test_serial_scenarios.test_ldc_mrt',
     'test_serial_scenarios.test_channel_srt',
 ]
 
@@ -24,17 +24,12 @@ class SimpleTestRunner(distutils.cmd.Command):
     @staticmethod
     def _run_tests_in_module(test):
         """Short test runner function - to work also if py.test is not installed."""
-        print("at start")
         test = 'lbmpy_tests.' + test
         mod, function_name = test.rsplit('.', 1)
         if isinstance(mod, str):
-            print("before import ", mod)
             mod = import_module(mod)
-            print("after import ", mod)
 
-        print("before getattr")
         func = getattr(mod, function_name)
-        print("   -> %s in %s" % (function_name, mod.__name__))
         with redirect_stdout(io.StringIO()):
             func()
 
-- 
GitLab