mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-06 08:50:04 -06:00
11 lines
358 B
Bash
Executable File
11 lines
358 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 /mysql-client-tests/mysql-client-tests.bats
|