diff options
author | chiiph <chiiph@delloise.(none)> | 2013-04-08 14:39:16 -0300 |
---|---|---|
committer | chiiph <chiiph@delloise.(none)> | 2013-04-08 14:39:16 -0300 |
commit | 472371e0a929ead968d4dff1894333f0ac3b82f9 (patch) | |
tree | f6fcdf0738cabaeff4f4449d03b92636269faa7e /pkg | |
parent | 005b6ca29c75e0e0f583327b8afea601a90ed6e7 (diff) | |
parent | 42593d4c6bda51a544a72abc0f935633939dad49 (diff) |
Merge remote-tracking branch 'kali/feature/test-auth' into develop
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/requirements-testing.pip | 13 | ||||
-rwxr-xr-x | pkg/tools/with_venv.sh | 4 |
2 files changed, 17 insertions, 0 deletions
diff --git a/pkg/requirements-testing.pip b/pkg/requirements-testing.pip new file mode 100644 index 00000000..bfa20544 --- /dev/null +++ b/pkg/requirements-testing.pip @@ -0,0 +1,13 @@ +nose +nose-exclude +nose-progressive +mock +unittest2 # TODO we should include this dep only for python2.6 +coverage +pep8==1.1 + +#sphinx>=1.1.2 +#tox + +twisted +zope.interface diff --git a/pkg/tools/with_venv.sh b/pkg/tools/with_venv.sh new file mode 100755 index 00000000..0e58f1ab --- /dev/null +++ b/pkg/tools/with_venv.sh @@ -0,0 +1,4 @@ +#!/bin/bash +TOOLS=`dirname $0` +VENV=$TOOLS/../../.venv +source $VENV/bin/activate && $@ |