With all required backends installed, stack build
can build all packages
listed in stack.yaml
and is equivalent to:
> stack build persistent persistent-template persistent-sqlite persistent-test
persistent-mongoDB persistent-mysql persistent-postgresql persistent-redis
If backends such as mysql and postgres are not installed then the default build will fail as will builds for packages for those backends alone:
> stack build persistent-mysql
...
Process exited with code: ExitFailure 1
Configuring mysql-0.1.4...
setup: The program 'mysql_config' is required but it could not be found
> stack build persistent-postgresql
...
Process exited with code: ExitFailure 1
Configuring postgresql-libpq-0.9.4.0...
setup: The program 'pg_config' is required but it could not be found.
To build all other packages, drop the failing package names as targets:
> stack build persistent persistent-template persistent-sqlite persistent-test
persistent-mongoDB persistent-redis
...
Completed 6 action(s).
To run all the tests for the repository, run:
> stack test
For testing specific packages, you can run:
> stack test persistent-sqlite
This will run the tests for the persistent-sqlite
package alone.
> cabal new-test all
To test a specific package, you'll pass the package names instead of all
.
The different backend libraries (persistent-postgresql
, persistent-mysql
, etc) are tested in their respective package directories.
persistent-sqlite
requires 0 additional setup.
The other packages require some amount of setup in order to run.
Details for setup in these should be present in those package directories.