mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-22 19:43:51 -05:00
17 lines
681 B
Bash
Executable File
17 lines
681 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Updating dolt config for tests:"
|
|
dolt config --global --add metrics.disabled true
|
|
dolt config --global --add metrics.host localhost
|
|
dolt config --global --add user.name mysql-test-runner
|
|
dolt config --global --add user.email mysql-test-runner@liquidata.co
|
|
|
|
echo "Running mysql-client-tests:"
|
|
bats /build/bin/bats/mysql-client-tests.bats
|
|
|
|
# We run mariadb-binlog integration in this suite same as with mysqldump in mysql-client-tests.bats.
|
|
# However, there's a bit more setup necessary to pipe the output from the dump in a mariadb client, so it's been
|
|
# separated into a separate bats.
|
|
echo "Running mariadb-binlog tests:"
|
|
bats /build/bin/bats/mariadb-binlog.bats
|