https://github.com/bear/python-twitter
Raw File
Tip revision: 4eb67c976e818d37f822934d7620da0a8792e14a authored by bear (Mike Taylor) on 01 August 2016, 07:22:05 UTC
remove pycodestyle until I can figure out what I'm doing wrong
Tip revision: 4eb67c9
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
back to top