diff --git a/.travis.yml b/.travis.yml index 5ddcefb..ddfdc6f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,5 +6,11 @@ python: - "3.8-dev" - "pypy3" install: - - pip install . -script: python -m unittest + - pip3 install . +before_script: + - pip3 install coverage + - pip3 install coveralls +script: + - coverage run --source fqfa -m unittest +after_success: + - coveralls