From 3b0ed398a70be03dad9bf48ca838f54d284341ea Mon Sep 17 00:00:00 2001 From: Paolo Greppi Date: Thu, 20 Oct 2016 08:01:36 +0000 Subject: [PATCH 1/2] fix for issue #683 --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d5e7bee56..b3b2f834b 100755 --- a/setup.py +++ b/setup.py @@ -375,8 +375,7 @@ def get_file_list (self): data_files = [ ('share/linkchecker', - ['config/linkcheckerrc', - 'doc/html/lccollection.qhc', 'doc/html/lcdoc.qch']), + ['config/linkcheckerrc']), ('share/linkchecker/examples', ['cgi-bin/lconline/leer.html.en', 'cgi-bin/lconline/leer.html.de', From acc02464fd10793b5ae9c58ae14e3b1e22765bc1 Mon Sep 17 00:00:00 2001 From: Paolo Greppi Date: Fri, 2 Dec 2016 15:49:01 +0100 Subject: [PATCH 2/2] also test install --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3f958733b..51c30b078 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,9 @@ install: - pip install -r requirements.txt - pip install pyftpdlib pytest-xdist # command to run tests -script: make test PYTESTOPTS="--tb=short" TESTS="tests/test_*.py tests/configuration/test_*.py tests/logger/test_*.py tests/checker/test_httpbin.py" +script: + - make test PYTESTOPTS="--tb=short" TESTS="tests/test_*.py tests/configuration/test_*.py tests/logger/test_*.py tests/checker/test_httpbin.py" + - python setup.py install # do not send emails of broken builds notifications: email: false