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
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