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:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-04-01 11:33:44 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-04-01 11:33:44 +0300
commitf185effa1507ef35654531b42852fc68ff06ffa9 (patch)
tree42946c6ee1ddacc57eac259bec728a00c3cbca59 /build_files
parent42a9f334c8f70b4785151864c1e8b833c0c134ee (diff)
Buildbot: Explicitly disable tests on all platforms
They were never running anyway since there's no checkout of tests folder. We should either make tweaks to buildbot master to make it to send cloning commands for tests folder and keep tests working (currently some of them are broken).
Diffstat (limited to 'build_files')
-rw-r--r--build_files/buildbot/slave_test.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/build_files/buildbot/slave_test.py b/build_files/buildbot/slave_test.py
index 78f8f68317d..6f313ede2ee 100644
--- a/build_files/buildbot/slave_test.py
+++ b/build_files/buildbot/slave_test.py
@@ -35,9 +35,8 @@ blender_dir = '../blender.git'
if "cmake" in builder:
# cmake
- if "linux" in builder or 'mac' in builder:
- print("Automated tests are still DISABLED!")
- sys.exit(0)
+ print("Automated tests are still DISABLED!")
+ sys.exit(0)
build_dir = os.path.abspath(os.path.join('..', 'build', builder))
chroot_name = None