comparison .travis.yml @ 2834:925c77b9d3f1 beta

travis configu updates
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 12 Sep 2012 22:20:56 +0200
parents 64ee7cf4a76d
children 69377d1d7604
comparison
equal deleted inserted replaced
2833:2f3cba7b6d16 2834:925c77b9d3f1
6 6
7 env: 7 env:
8 - TEST_DB=sqlite:////tmp/rhodecode_test.sqlite 8 - TEST_DB=sqlite:////tmp/rhodecode_test.sqlite
9 - TEST_DB=mysql://root@127.0.0.1/rhodecode_test 9 - TEST_DB=mysql://root@127.0.0.1/rhodecode_test
10 - TEST_DB=postgresql://postgres@127.0.0.1/rhodecode_test 10 - TEST_DB=postgresql://postgres@127.0.0.1/rhodecode_test
11
12 services:
13 - mysql
14 - postgresql
11 15
12 # command to install dependencies 16 # command to install dependencies
13 before_script: 17 before_script:
14 - mysql -e 'create database rhodecode_test;' 18 - mysql -e 'create database rhodecode_test;'
15 - psql -c 'create database rhodecode_test;' -U postgres 19 - psql -c 'create database rhodecode_test;' -U postgres