0

I have some rails-cucumber tests, all looks fine but CS says the test suite failed: enter image description here

I didn't set "--strict" in the command line.

aarkerio
  • 2,183
  • 2
  • 20
  • 34

1 Answers1

0

You'll want to investigate why it is that your process might be returning a non-zero exit code. The recommendation here is to hop into an ssh debug for your build and verify that each step is returning a zero exit code:

echo $?

Drew Kitch
  • 201
  • 1
  • 3