From 2271184b2786ba6654df5acd6aa5caa4cf6a7a3c Mon Sep 17 00:00:00 2001 From: Patricio Cano Date: Wed, 29 Nov 2017 13:05:35 -0600 Subject: [PATCH 1/4] Update .alloy-ci.json --- .alloy-ci.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.alloy-ci.json b/.alloy-ci.json index 234c8f4..f9d4605 100644 --- a/.alloy-ci.json +++ b/.alloy-ci.json @@ -1,9 +1,7 @@ { - "Rspec Tests": { + "Run Test": { "script": [ - "bundle install --path vendor/bundle", - "bundle exec rake db:setup", - "bundle exec rspec" + "ruby test.rb" ] }, "variables": { From 771e9ca5e1a891ae0e5423861e568e3994159c19 Mon Sep 17 00:00:00 2001 From: Patricio Cano Date: Thu, 30 Nov 2017 19:14:41 -0600 Subject: [PATCH 2/4] Update test.rb --- test.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/test.rb b/test.rb index cb02c90..bf7e8b3 100644 --- a/test.rb +++ b/test.rb @@ -1,5 +1,6 @@ #!/usr/bin/env ruby puts "I'm alive!" +puts "Here I am" exit 0 From c74179c02b418d5325633664d13dfbc17fbde579 Mon Sep 17 00:00:00 2001 From: Patricio Cano Date: Fri, 1 Dec 2017 16:28:04 -0600 Subject: [PATCH 3/4] Remove DEBUG trace --- .alloy-ci.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/.alloy-ci.json b/.alloy-ci.json index f9d4605..58470a8 100644 --- a/.alloy-ci.json +++ b/.alloy-ci.json @@ -3,8 +3,5 @@ "script": [ "ruby test.rb" ] - }, - "variables": { - "CI_DEBUG_TRACE": "true" } } From c0e5e4a0bd0e61340641089dff76a2705b1454b5 Mon Sep 17 00:00:00 2001 From: Patricio Cano Date: Wed, 20 Dec 2017 12:04:28 -0600 Subject: [PATCH 4/4] Trace is needed again for more tests --- .alloy-ci.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.alloy-ci.json b/.alloy-ci.json index 58470a8..f9d4605 100644 --- a/.alloy-ci.json +++ b/.alloy-ci.json @@ -3,5 +3,8 @@ "script": [ "ruby test.rb" ] + }, + "variables": { + "CI_DEBUG_TRACE": "true" } }