Skip to content
This repository has been archived by the owner on Dec 7, 2022. It is now read-only.

Adding coveralls #3397

Merged
merged 1 commit into from Mar 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion .travis/script.sh
Expand Up @@ -26,7 +26,7 @@ else
result=1
fi

pulp-manager test pulpcore/pulpcore/app/tests
coverage run --source=pulpcore manage.py test pulpcore
if [ $? -ne 0 ]; then
result=1
fi
Expand Down Expand Up @@ -56,6 +56,9 @@ else
result=1
fi
fi

# upload coverage report to coveralls
coveralls
fi

exit $result
2 changes: 2 additions & 0 deletions test_requirements.txt
@@ -1,3 +1,5 @@
# Test requirements
flake8
mock
coveralls
coverage