Skip to content

Commit

Permalink
checking passed tests now
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanNoelk committed Mar 27, 2018
1 parent 2279c49 commit 65927f2
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,9 @@ python manage.py migrate

# Run the tests and create a coverage report
coverage run --omit="*/migrations*,*/fixtures*" manage.py test -k
if [ $? -eq 0 ]
then
exit 0
else
exit 1
ret=$?
if [ $ret -ne 0 ]; then
exit 1
fi

# Submit coverage to Coveralls
Expand Down

0 comments on commit 65927f2

Please sign in to comment.