From 66067f3a9783f5b58fd14cc0e5d6df219af5360c Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 3 Dec 2015 16:44:44 +0500 Subject: Buildbot: Disable tests on Linux builders No idea why they works on windows, but points are: - libs/tests folder is NOT checked out on any platforms - render_povray addon does mkdir on a path which might not have parents There might be some other issues, but those are kinda stoppers for us. --- build_files/buildbot/slave_test.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build_files/buildbot/slave_test.py b/build_files/buildbot/slave_test.py index 9f43bcba61c..973e17a1f3b 100644 --- a/build_files/buildbot/slave_test.py +++ b/build_files/buildbot/slave_test.py @@ -35,6 +35,10 @@ blender_dir = '../blender.git' if "cmake" in builder: # cmake + if "linux" in builder: + print("Automated tests are still DISABLED!") + sys.exit(0) + build_dir = os.path.abspath(os.path.join('..', 'build', builder)) chroot_name = None chroot_prefix = [] -- cgit v1.2.3