https://github.com/bear/python-twitter
Raw File
Tip revision: 456b2a9670980205e78b4a64df27c7eb67f433bd authored by Jeremy Low on 10 August 2016, 01:22:12 UTC
make change backwards compatible
Tip revision: 456b2a9
tox.ini
[tox]
envlist = py27,py35,pypy,pypy3,codestyle
skip_missing_interpreters = True

[testenv]
deps = -Ur{toxinidir}/requirements.txt
       -Ur{toxinidir}/requirements.testing.txt

commands = make test

whitelist_externals = /bin/bash
                      make
setenv =
    PYTHONWARNINGS=always::DeprecationWarning

[testenv:codestyle]
deps = pycodestyle
commands = pycodestyle --config={toxinidir}/setup.cfg twitter tests
back to top