2015-04-02 09:24:04 +02:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2020-04-15 01:20:30 +02:00
|
|
|
if [ $CKANVERSION == 'master' ]
|
|
|
|
then
|
|
|
|
pytest --ckan-ini=subdir/test.ini ckanext/spatial/tests
|
|
|
|
else
|
|
|
|
nosetests --ckan --nologcapture --with-pylons=subdir/test.ini ckanext/spatial/tests/nose
|
|
|
|
fi
|