Revision 13dd590b498fc066241032646eaca73f94ab68fa authored by Tom Hu on 24 November 2016, 14:15:11 UTC, committed by GitHub on 24 November 2016, 14:15:11 UTC
`words` is a list containing separated words. Thus, it should not be passed into `is_url()` as a string.
1 parent dc13a39
Raw File
pytest.ini
[pytest]
norecursedirs=
    venv
    */python?.?/*
    */site-packages/*
    .tox/*

with-coverage = true
cover-package = twitter
cover-html = true
cover-html-dir = htmlcov
cover-erase = true
cover-inclusive = true
cover-branches = true
back to top