Skip to content
Snippets Groups Projects
Commit 71c78d3b authored by bigbes's avatar bigbes
Browse files

Enable mysql/pg tests in travis.

parent f31b2a38
No related merge requests found
......@@ -8,6 +8,19 @@ branches:
- master
- stable
addons:
postgresql: "9.1"
before_script:
- psql -c "CREATE USER tarantool WITH PASSWORD 'tarantool';" -U postgres
- psql -c "CREATE DATABASE tarantool;" -U postgres
- psql -c "GRANT ALL PRIVILEGES ON DATABASE tarantool TO tarantool;" -U postgres
- mysql -e "CREATE USER 'tarantool'@'localhost' IDENTIFIED BY 'tarantool';" -u root
- mysql -e "CREATE DATABASE tarantool;" -u root
- mysql -e "GRANT ALL PRIVILEGES ON *.* TO 'tarantool'@'localhost' WITH GRANT OPTION;" -u root
- export PG='127.0.0.1:5432:tarantool:tarantool:tarantool'
- export MYSQL='127.0.0.1:3306:tarantool:tarantool:tarantool'
install:
- sudo apt-get update > /dev/null
- sudo apt-get -q install binutils-dev python-daemon python-yaml python-pexpect
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment