https://github.com/bear/python-twitter
Raw File
Tip revision: 5884ece2b7b280a573306519470f8fb868e0a399 authored by Jeremy Low on 05 August 2016, 01:45:27 UTC
additionally check to make sure system is "Linux"
Tip revision: 5884ece
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