#!/bin/sh

# PhpSpec run fix that prevent suite containing skipped example to make travis build fail

touch app/config/parameters_test.yml

bin/phpspec run $@

PHPSPEC_CODE=$?

# Exit code 2 is the one that state at least one example was skipped
if [ $PHPSPEC_CODE -eq 2 ]; then
    exit 0
fi

exit $PHPSPEC_CODE
