summaryrefslogtreecommitdiff
path: root/hacking-tox.ini
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-08-16 05:34:12 -0700
committerChris McDonough <chrism@plope.com>2013-08-16 05:34:12 -0700
commitb7314f804c0c550c3763456ce198e541591f17b8 (patch)
tree81fc774e40d4b325950e58abb96a55086a86a9fc /hacking-tox.ini
parent18d39328082dce27c9ce48364e3d6baa4d76ec79 (diff)
parent00a08a307574b231a5a8c1142bc675732a03632b (diff)
downloadpyramid-b7314f804c0c550c3763456ce198e541591f17b8.tar.gz
pyramid-b7314f804c0c550c3763456ce198e541591f17b8.tar.bz2
pyramid-b7314f804c0c550c3763456ce198e541591f17b8.zip
Merge pull request #1096 from tomster/hacking-with-tox
add custom tox config that creates a development environment
Diffstat (limited to 'hacking-tox.ini')
-rw-r--r--hacking-tox.ini25
1 files changed, 25 insertions, 0 deletions
diff --git a/hacking-tox.ini b/hacking-tox.ini
new file mode 100644
index 000000000..9520b7aef
--- /dev/null
+++ b/hacking-tox.ini
@@ -0,0 +1,25 @@
+[tox]
+envlist =
+ env27,ttw27-create,ttw27-install
+
+[testenv:env27]
+envdir = env27
+basepython = python2.7
+usedevelop = True
+deps = setuptools-git
+commands =
+ python setup.py dev
+
+[testenv:ttw27-create]
+envdir = env27
+usedevelop = True
+changedir = env27
+commands =
+ pcreate -s starter hacking
+
+[testenv:ttw27-install]
+envdir = env27
+usedevelop = True
+changedir = env27/hacking
+commands =
+ python setup.py develop