diff --git a/.appveyor.yml b/.appveyor.yml index b71a6329..f4b99994 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -9,7 +9,7 @@ install: # doxygen.portable is not updated, use newer doxygen - choco install doxygen.install - set PATH=C:\Program Files\doxygen\bin;%PATH% - - "%PYTHON%\\python.exe -m pip install -U pip setuptools tox" + - "%PYTHON%\\python.exe -m pip install -U pip setuptools tox codecov" build: off @@ -18,4 +18,7 @@ test_script: - easy_install --version - doxygen --version # Installs dependencies and runs the tests. - - "%PYTHON%\\Scripts\\tox -e py" + - "%PYTHON%\\Scripts\\tox -e py -- --cov=exhale --cov=testing" + +after_test: + - "%PYTHON%\\python.exe -m codecov --name %PYTHON%" diff --git a/.travis.yml b/.travis.yml index 9656dfd5..ffd2c0fa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,7 +33,7 @@ matrix: install: *linux_install script: - doxygen --version - - tox -e py -- --cov=exhale + - tox -e py -- --cov=exhale --cov=testing after_success: - codecov --name linux_py2.7 #################################################################################### @@ -46,7 +46,7 @@ matrix: install: *linux_install script: - doxygen --version - - tox -e py -- --cov=exhale + - tox -e py -- --cov=exhale --cov=testing after_success: - codecov --name linux_py3.6 #################################################################################### @@ -65,7 +65,7 @@ matrix: script: - doxygen --version - /usr/local/bin/python2 --version - - /usr/local/bin/python2 -m tox -e py -- --cov=exhale + - /usr/local/bin/python2 -m tox -e py -- --cov=exhale --cov=testing after_success: - codecov --name osx_py2.7 #################################################################################### @@ -82,7 +82,7 @@ matrix: script: - doxygen --version - /usr/local/bin/python3 --version - - /usr/local/bin/python3 -m tox -e py -- --cov=exhale + - /usr/local/bin/python3 -m tox -e py -- --cov=exhale --cov=testing after_success: - codecov --name osx_py3.6 #################################################################################### diff --git a/setup.cfg b/setup.cfg index 243ee5f2..d9a7550c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -40,4 +40,4 @@ python_files = testing/tests/**.py [coverage:run] data_file = .coverage -source = exhale +source = exhale/ testing/