https://github.com/bear/python-twitter
Raw File
Tip revision: d60147b724fcac33fc03fa95607507d49d795ff3 authored by Jeremy Low on 14 September 2016, 11:49:31 UTC
update documentation and changelog
Tip revision: d60147b
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