From 27d83b7b13dbd84df13f1b7cc1b73ac742bf92cf Mon Sep 17 00:00:00 2001 From: =epogrebnyak Date: Sat, 2 Sep 2017 18:46:20 +0300 Subject: [PATCH] #23 adding code coverage for all /src, not just /src/csv2/df --- .travis.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index fa1e0ac..a7ab03a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,13 @@ language: python python: - "3.6" -# command to install dependencies install: - pip install -r requirements.txt - pip install pytest - pip install codecov - pip install pytest-cov -# - pip install coveralls # command to run tests script: - - pytest src/csv2df --doctest-modules --cov=csv2df + - pytest src --doctest-modules --cov=src after_success: - - codecov -# - coveralls + - codecov \ No newline at end of file