Skip to content

Instantly share code, notes, and snippets.

@jeamland
Created September 21, 2011 03:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeamland/1231216 to your computer and use it in GitHub Desktop.
Save jeamland/1231216 to your computer and use it in GitHub Desktop.
Example toxconfig.py
from tox import TestEnvironment, py27
envlist = [py27]
testenv = TestEnvironment(
commands=[
'nosetests',
],
deps=[
'SQLAlchemy',
'bottle',
'requests',
'selenium',
],
downloadcache='%(toxworkdir)s/cache'
)
testenv.make_default()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment