From 15d495985f3d255145740c1f40d4bebeacf3d712 Mon Sep 17 00:00:00 2001 From: CorcovadoMing Date: Thu, 28 Apr 2016 11:43:17 +0800 Subject: [PATCH] use steps.Test instead of steps.Compile --- buildbot/master/files/config/factories.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildbot/master/files/config/factories.py b/buildbot/master/files/config/factories.py index 6c4e363d..77ec666b 100644 --- a/buildbot/master/files/config/factories.py +++ b/buildbot/master/files/config/factories.py @@ -126,7 +126,7 @@ def make_win_command(command): # heuristics used by DynamicServoFactory.make_step steps.Compile(command=make_win_command("./mach build -d -v"), env=envs.build_windows), - steps.Compile(command=make_win_command("./mach test-unit"), - env=envs.build_windows), + steps.Test(command=make_win_command("./mach test-unit"), + env=envs.build_windows), # TODO: run lockfile_changed.sh and manifest_changed.sh scripts ])