We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fc55f7 commit 5581450Copy full SHA for 5581450
README.md
@@ -27,6 +27,21 @@ make
27
make install
28
```
29
30
+#### Run tests
31
+
32
+To run the tests, the following preparatory steps must be completed:
33
+* Run mysql instance.
34
+* Connect a client to the instance and execute the commands:
35
+ * `CREATE USER 'test_user' IDENTIFIED WITH mysql_native_password BY 'pass';`
36
+ * `CREATE DATABASE tarantool_mysql_test;`
37
+ * `GRANT ALL PRIVILEGES ON *.* TO 'test_user';`
38
+* Define MYSQL environment variable using the following format:<br/>
39
+`ip:port:user:user_pass:db_name:`<br/>
40
+Example:<br/>
41
+`export MYSQL=127.0.0.1:3306:test_user:pass:tarantool_mysql_test:`
42
43
+The tests can now be run by `make check`.
44
45
#### tarantoolctl rocks
46
47
You can also use tarantoolctl rocks:
0 commit comments