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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-09-05 13:34:17 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-09-05 13:52:54 +0300
commitb6e7e173ecd943fcfa6ddad91bfe86a41073c768 (patch)
treeaf4f21f1dfcc614614283d0ffffa2593f912aace /build_files/buildbot
parent83875e978d62c0fd55632b4ce14828ab17931049 (diff)
Buildbot: enable tests to run again
These will not stop the build on failure yet, first step is to get them passing more reliably.
Diffstat (limited to 'build_files/buildbot')
-rw-r--r--build_files/buildbot/slave_test.py7
-rw-r--r--build_files/buildbot/slave_update.py2
2 files changed, 1 insertions, 8 deletions
diff --git a/build_files/buildbot/slave_test.py b/build_files/buildbot/slave_test.py
index 1b6b426b621..d08f433658c 100644
--- a/build_files/buildbot/slave_test.py
+++ b/build_files/buildbot/slave_test.py
@@ -45,12 +45,5 @@ def test(builder):
buildbot_utils.call(command, env=ctest_env, exit_on_error=False)
if __name__ == "__main__":
- print("Automated tests are still DISABLED!")
- sys.exit(0)
-
builder = buildbot_utils.create_builder_from_arguments()
test(builder)
-
- # Always exit with a success, for until we know all the tests are passing
- # on all builders.
- sys.exit(0)
diff --git a/build_files/buildbot/slave_update.py b/build_files/buildbot/slave_update.py
index 42633e1e529..39f449b87bc 100644
--- a/build_files/buildbot/slave_update.py
+++ b/build_files/buildbot/slave_update.py
@@ -28,4 +28,4 @@ if __name__ == "__main__":
# Run make update which handles all libraries and submodules.
make_update = os.path.join(builder.blender_dir, "build_files", "utils", "make_update.py")
- buildbot_utils.call([sys.executable, make_update, '--no-blender'])
+ buildbot_utils.call([sys.executable, make_update, '--no-blender', "--use-tests"])