From cd951a73c544235e09e3629a03ae147f841145ce Mon Sep 17 00:00:00 2001 From: Andrew Vaughan Date: Sat, 4 Nov 2017 15:35:50 -0500 Subject: [PATCH] Build: Added Coveralls integration (fixes #9) --- .travis.yml | 3 ++- requirements-dev.txt | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ef6691b..96180a8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,4 +14,5 @@ install: script: - pycodestyle --show-pep8 --show-source ./ - pydocstyle --explain --source ./ - - python -m unittest discover -v + - coverage run --source action_plugins test + - coveralls diff --git a/requirements-dev.txt b/requirements-dev.txt index 8e61a1b..e4d810a 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,3 +1,4 @@ coverage +coveralls pycodestyle pydocstyle