From 0d1a28e7a4773bf7b770fea8d1b0269d9b9e0682 Mon Sep 17 00:00:00 2001 From: 1ozturkbe <1ozturkbe@gmail.com> Date: Mon, 21 Oct 2019 11:27:27 -0400 Subject: [PATCH] Make sure xmlotputs are generated. --- run_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run_tests.py b/run_tests.py index 5c5d9bf..8475e0d 100644 --- a/run_tests.py +++ b/run_tests.py @@ -1,4 +1,4 @@ -"""Script for running all gpkit unit tests""" +"""Script for running all unit tests""" import gpkit from gpkit.tests.run_tests import run from gpkit.tests.test_repo import git_clone, pip_install @@ -45,7 +45,7 @@ def test(): (testcase,), {}) setattr(test, "solver", solver) TESTS.append(test) - run(tests=TESTS) + run(tests=TESTS, xmloutput=True) if __name__ == '__main__': test()