From 3bf0561b43ae84ba0444ddfc9a83346959a54f19 Mon Sep 17 00:00:00 2001 From: Evgeny Fadeev Date: Tue, 29 Mar 2011 00:52:33 -0400 Subject: [PATCH] added basic tox testing setup --- MANIFEST.in | 1 + tox.ini | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 tox.ini diff --git a/MANIFEST.in b/MANIFEST.in index bba6c7fe..5ce27154 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,5 @@ include ez_setup.py +include tox.ini recursive-include askbot * recursive-exclude askbot *.pyc recursive-exclude .git diff --git a/tox.ini b/tox.ini new file mode 100644 index 00000000..d0be6511 --- /dev/null +++ b/tox.ini @@ -0,0 +1,4 @@ +[tox] +envlist=py26,py25,py27 +[testenv] +commands=python manage.py test askbot