relstorage/BUILDOUT.rst
Jim Fulton 3a49a6b23e Updated the buildout configuration to just run relstorage tests and
to select which databases to use at build time.
2016-06-14 13:43:36 -04:00

19 lines
537 B
ReStructuredText

========================================
Building for running tests with buildout
========================================
Run the buildout as usual, but to include database support specify a
db option, with one or more database names sperated by commas. For
example, to build for postgres, mysql and oracle::
bin/buildout db=postgresql,mysql,oracle
Or just postgres:
bin/buildout db=postgresql
Before running tests, you'll need to run database setup scripts in the
``.travis`` subdirectory.
Then run tests with ``bin/test``.