tox.ini 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. # Tox (http://tox.testrun.org/) is a tool for running tests
  2. # in multiple virtualenvs. This configuration file will run the
  3. # test suite on all supported python versions. To use it, "pip install tox"
  4. # and then run "tox" from this directory.
  5. [tox]
  6. envlist = py26_django14, py26_django15,
  7. py27_django14, py27_django15, py27_django16, py27_django17,
  8. py33_django16, py33_django17,
  9. py34_django16, py34_django17,
  10. [testenv]
  11. commands = {envpython} setup.py test
  12. [testenv:py26_django14]
  13. basepython = python2.6
  14. deps = Django==1.4.17
  15. shortuuid==0.4
  16. python-dateutil
  17. [testenv:py27_django14]
  18. basepython = python2.7
  19. deps = Django==1.4.17
  20. shortuuid==0.4
  21. python-dateutil
  22. [testenv:py26_django15]
  23. basepython = python2.6
  24. deps = Django==1.5.12
  25. shortuuid==0.4
  26. python-dateutil
  27. [testenv:py27_django15]
  28. basepython = python2.7
  29. deps = Django==1.5.12
  30. shortuuid==0.4
  31. python-dateutil
  32. [testenv:py27_django16]
  33. basepython = python2.7
  34. deps = Django==1.6.9
  35. shortuuid==0.4
  36. python-dateutil
  37. [testenv:py27_django17]
  38. basepython = python2.7
  39. deps = Django==1.7.2
  40. shortuuid==0.4
  41. python-dateutil
  42. [testenv:py33_django15]
  43. basepython = python3.3
  44. deps = Django==1.5.12
  45. shortuuid==0.4
  46. python-dateutil
  47. [testenv:py33_django16]
  48. basepython = python3.3
  49. deps = Django==1.6.9
  50. shortuuid==0.4
  51. python-dateutil
  52. [testenv:py33_django17]
  53. basepython = python3.3
  54. deps = Django==1.7.2
  55. shortuuid==0.4
  56. python-dateutil
  57. [testenv:py34_django16]
  58. basepython = python3.4
  59. deps = Django==1.6.9
  60. shortuuid==0.4
  61. python-dateutil
  62. [testenv:py34_django17]
  63. basepython = python3.4
  64. deps = Django==1.7.2
  65. shortuuid==0.4
  66. python-dateutil