mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-23 15:44:44 +00:00
Do not require testing/installing packages.
This commit is contained in:
parent
ee931d8722
commit
0579df2cc5
3 changed files with 8 additions and 5 deletions
|
|
@ -13,6 +13,7 @@ before_install:
|
|||
# command to install dependencies
|
||||
install:
|
||||
- pip install -r requirements.txt --use-mirrors
|
||||
- pip install pyftpdlib
|
||||
# command to run tests
|
||||
script: make test PYTESTOPTS="--tb=short" TESTS="tests/test_*.py tests/cache/test_*.py tests/configuration/test_*.py tests/logger/test_*.py"
|
||||
# do not send emails of broken builds
|
||||
|
|
|
|||
|
|
@ -6,13 +6,13 @@ Features:
|
|||
checks into plugins (see upgrading.txt for more info).
|
||||
- checking: Add options to limit the number of requests per second,
|
||||
allowed URL schemes and maximum file or download size.
|
||||
Closes: GH bug #397
|
||||
Closes: GH bug #397, #465
|
||||
- gui: UI language can be changed dynamically.
|
||||
Closes: GH bug #391
|
||||
|
||||
Changes:
|
||||
- checking: Use the Python requests module for HTTP and HTTPS requests.
|
||||
Closes: GH bug #393
|
||||
Closes: GH bug #393, #463
|
||||
- logging: Removed download, domains and robots.txt statistics.
|
||||
- logging: HTML output is now in HTML5.
|
||||
- checking: Removed 301 warning since 301 redirects are used
|
||||
|
|
@ -26,7 +26,7 @@ Changes:
|
|||
client IPs.
|
||||
- checking: Only internal URLs are checked as default. To check
|
||||
external urls use --check-extern.
|
||||
Closes: GH bug #394
|
||||
Closes: GH bug #394, #460
|
||||
|
||||
Fixes:
|
||||
- logging: Status was printed every second regardless of the
|
||||
|
|
@ -34,6 +34,8 @@ Fixes:
|
|||
- logging: Add missing column name to SQL insert command.
|
||||
Closes: GH bug #399
|
||||
- checking: Several speed and memory usage improvements.
|
||||
- logging: Fix --no-warnings option.
|
||||
Closes: GH bug #457
|
||||
|
||||
|
||||
8.6 "About Time" (released 8.1.2014)
|
||||
|
|
|
|||
|
|
@ -4,6 +4,6 @@ requests
|
|||
argcomplete
|
||||
twill
|
||||
# for testing:
|
||||
pyftpdlib
|
||||
#pyftpdlib
|
||||
# for building on osx:
|
||||
py2app
|
||||
#py2app
|
||||
|
|
|
|||
Loading…
Reference in a new issue