From 891519af751c51ac1203087ce08d1e730b5764ea Mon Sep 17 00:00:00 2001 From: Dale Henrichs Date: Wed, 3 Jul 2013 06:24:37 -0700 Subject: [PATCH] need Warning handler --- tests/travisCI.st | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/travisCI.st b/tests/travisCI.st index dea85cfe..d66e15ee 100644 --- a/tests/travisCI.st +++ b/tests/travisCI.st @@ -8,10 +8,14 @@ gitPath := (Smalltalk at: #'FileDirectory' ifAbsent: [ ]) ifNotNil: [:fileDirectoryClass | (fileDirectoryClass default directoryNamed: gitCache ) fullName]. "Load Zinc... " +[ Metacello new baseline: 'ZincHTTPComponents'; repository: 'filetree://', gitPath, '/zinc/repository'; load: #('Tests' 'Core'). +] on: Warning do: [:ex | + Transcript cr; show: 'WARNING: ', ex description. + ex resume: true ]. "Run the Zinc tests" TravisCIHarness