From 6298f3a0f6640fdd5256051a93771a0c395233be Mon Sep 17 00:00:00 2001 From: Vinayak Mehta Date: Tue, 25 Sep 2018 12:03:55 +0530 Subject: [PATCH] Add codecov to Travis --- .gitignore | 1 + .travis.yml | 4 +++- requirements-dev.txt | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) 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