diff --git a/.travis.yml b/.travis.yml index 91d8cc67..53cadac0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,10 +10,10 @@ env: - DB=postgres://postgres:@localhost/test_w2p before_script: - pip install unittest2 - - pip install psycopg2 + - if [[ $DB == postgres* ]]; then pip install --use-mirrors psycopg2; fi - if [[ $TRAVIS_PYTHON_VERSION == '2.5' ]]; then pip install --use-mirrors pysqlite; fi - - mysql -e 'create database test_w2p;' - - psql -c 'create database test_w2p;' -U postgres + - if [[ $DB == mysql* ]]; then mysql -e 'create database test_w2p;'; fi + - if [[ $DB == postgres* ]]; then psql -c 'create database test_w2p;' -U postgres; fi #Temporal solution to travis issue #155 - sudo chmod 777 /dev/shm - sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm diff --git a/VERSION b/VERSION index 012e85a2..fe9ebcc3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.4.4-stable+timestamp.2013.03.15.21.27.13 +Version 2.4.4-stable+timestamp.2013.03.16.20.52.38