Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added database setup instructions.

...

Before you can use the tool you need to install maven. Make sure a liquibase database exists and ensure the max_allowed_packet setting on the mysql server is greater than 20 000 000:

Code Block
languagesql
create database liquibaserunner default character set utf8;
show global variables like 'max_allowed_packet'; -- Must be bigger than 20000000

In order to execute all tests for scripts included in OpenMRS 1.9.0 run from the project directory:

...