You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@predictionio.apache.org by do...@apache.org on 2016/08/09 21:43:35 UTC

[27/52] [abbrv] incubator-predictionio git commit: Generate test reports in separate directory

Generate test reports in separate directory


Project: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/commit/c2f4a145
Tree: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/tree/c2f4a145
Diff: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/diff/c2f4a145

Branch: refs/heads/develop
Commit: c2f4a145b57ce93ea0e25c9bada6e32de4063f12
Parents: a05fcd3
Author: Chan Lee <ch...@gmail.com>
Authored: Fri Jul 29 10:28:53 2016 -0700
Committer: Marcin Ziemi\u0144ski <zi...@gmail.com>
Committed: Wed Aug 3 14:41:18 2016 -0700

----------------------------------------------------------------------
 tests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-predictionio/blob/c2f4a145/tests.py
----------------------------------------------------------------------
diff --git a/tests.py b/tests.py
index a516beb..547c259 100755
--- a/tests.py
+++ b/tests.py
@@ -64,7 +64,7 @@ if __name__ == "__main__":
     # Actual tests execution
     event_server_process = srun_bg('pio eventserver --ip {} --port {}'
             .format(test_context.es_ip, test_context.es_port))
-    result = xmlrunner.XMLTestRunner(verbosity=2).run(unittest.TestSuite(tests))
+    result = xmlrunner.XMLTestRunner(verbosity=2, output='test-reports').run(unittest.TestSuite(tests))
     event_server_process.kill()
 
     if not result.wasSuccessful():