Fix tox and test stuff
This commit is contained in:
parent
aa64836104
commit
10c2c8de78
14
run_tests.sh
Executable file
14
run_tests.sh
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
# Wrap tox to force it to enable global site-packages until
|
||||
# https://bitbucket.org/hpk42/tox/issue/32 is released.
|
||||
|
||||
set -x
|
||||
|
||||
rm -rf cover
|
||||
if [ ! -z "$VIRTUAL_ENV" ]
|
||||
then
|
||||
rm -f $VIRTUAL_ENV/lib/python*/no-global-site-packages.txt
|
||||
fi
|
||||
|
||||
nosetests "$@"
|
||||
|
1
setup.py
1
setup.py
@ -26,6 +26,7 @@ tests_require = common_setup.parse_requirements(['tools/test-requires'])
|
||||
setup_require = common_setup.parse_requirements(['tools/setup-requires'])
|
||||
dependency_links = common_setup.parse_dependency_links([
|
||||
'tools/pip-requires',
|
||||
'tools/pip-options',
|
||||
'tools/test-requires',
|
||||
'tools/setup-requires'
|
||||
])
|
||||
|
6
tools/pip-options
Normal file
6
tools/pip-options
Normal file
@ -0,0 +1,6 @@
|
||||
# Optional Stuff that is used by default
|
||||
SQLAlchemy>=0.7.8,<=0.7.9
|
||||
kombu
|
||||
|
||||
# Needed for Keystone Middleware
|
||||
https://launchpad.net/keystone/folsom/2012.2/+download/keystone-2012.2.tar.gz#egg=keystone
|
@ -1,13 +1,14 @@
|
||||
Flask==0.9
|
||||
iso8601>=0.1.4
|
||||
eventlet
|
||||
sqlalchemy>=0.7
|
||||
jsonschema>=0.6
|
||||
sqlalchemy>=0.7
|
||||
PasteDeploy
|
||||
stevedore
|
||||
|
||||
routes>=1.12.3
|
||||
iso8601>=0.1.4
|
||||
WebOb>=1.0.8
|
||||
|
||||
# Needed for Keystone Middleware
|
||||
https://launchpad.net/keystone/folsom/2012.2/+download/keystone-2012.2.tar.gz#egg=keystone
|
||||
python-keystoneclient
|
||||
|
||||
# Optional Stuff that is used by default
|
||||
kombu
|
||||
|
Loading…
x
Reference in New Issue
Block a user