ac57d50f42
This will allow us to run Py35 tests while testing in the container Change-Id: Ia95262c37a9eb843b8afdedf6e9adf76a9f5641f
8 lines
295 B
Bash
Executable File
8 lines
295 B
Bash
Executable File
#!/bin/bash
|
|
[[ ${DEBUG_MODE} ]] && set -x
|
|
mysql --no-defaults -S ${SQL_DIR}/mysql.socket -e 'CREATE DATABASE refstack;'
|
|
mysql --no-defaults -S ${SQL_DIR}/mysql.socket -e 'set @@global.show_compatibility_56=ON;'
|
|
|
|
cd /home/dev/refstack
|
|
.venv/bin/python bin/refstack-manage upgrade --revision head
|