Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTimofey <t.danshin@corp.mail.ru>2016-06-22 20:45:28 +0300
committerTimofey <t.danshin@corp.mail.ru>2016-06-22 20:54:03 +0300
commit2c7ba7b581ba761a14fb3fd1aa555f5dc917adeb (patch)
tree4f6fedd239100e755847b1cc0fc64381cafb25f9 /tools
parent814e481738d40c294d7185e93f66f4e4a234e739 (diff)
Fixed getting basepath of list error.
Diffstat (limited to 'tools')
-rw-r--r--tools/python/integration_tests_runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/python/integration_tests_runner.py b/tools/python/integration_tests_runner.py
index fdaa31ff03..79a7fac686 100644
--- a/tools/python/integration_tests_runner.py
+++ b/tools/python/integration_tests_runner.py
@@ -63,9 +63,9 @@ def spawn_test_process(test, flags):
)
multiprocessing.get_logger().info(spell[0])
- out, err = process.communicate()
+ _, err = process.communicate()
- return filter(None, out.splitlines()), err, process.returncode
+ return test, err, process.returncode
def exec_test(a_tuple):