Fix for some integration tests:

* Added storage integration tests to those that require temporary forlders for running normally;
* Added logging the process id for the shells running our tests (needed when a test hangs);
This commit is contained in:
Timofey 2016-06-10 17:20:30 +03:00
parent 7d295147ce
commit ed989ef720
2 changed files with 2 additions and 1 deletions

View file

@ -20,7 +20,7 @@ from run_desktop_tests import tests_on_disk
__author__ = 't.danshin'
TEMPFOLDER_TESTS = ["search_integration_tests"]
TEMPFOLDER_TESTS = ["search_integration_tests", "storage_integration_tests"]
class IntegrationRunner:

View file

@ -157,6 +157,7 @@ class TestRunner:
format(tests_path=self.workspace_path, test_file=test_file_with_keys, logfile=self.logfile),
shell=True,
stdout=subprocess.PIPE)
logging.info("Pid: {0}".format(process.pid))
process.wait()