diff --git a/.gitignore b/.gitignore index bfa45c7..c8f411d 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ build/ dist/ *.egg-info/ .coverage +coverage.xml .pytest_cache/ _build/ diff --git a/.travis.yml b/.travis.yml index 50b5bab..1baa33d 100755 --- a/.travis.yml +++ b/.travis.yml @@ -6,4 +6,6 @@ before_install: install: - pip install ".[dev]" script: - - pytest \ No newline at end of file + - pytest +after_success: + - codecov \ No newline at end of file diff --git a/requirements-dev.txt b/requirements-dev.txt index 388f751..bbae59b 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,3 +1,4 @@ +codecov==2.0.15 pytest==3.8.0 pytest-runner==4.2 Sphinx==1.7.9 \ No newline at end of file