2020-02-08 06:29:31 -08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2022-06-30 10:06:56 -07:00
|
|
|
pushd extras/drift_postgres
|
|
|
|
echo "Running integration tests with Postgres"
|
|
|
|
dart pub upgrade
|
2022-08-01 13:09:36 -07:00
|
|
|
dart test || true
|
2022-06-30 10:06:56 -07:00
|
|
|
popd
|
2021-11-11 05:40:41 -08:00
|
|
|
|
2022-04-01 13:11:21 -07:00
|
|
|
pushd examples/with_built_value
|
2020-02-08 06:29:31 -08:00
|
|
|
echo "Running build runner in with_built_value"
|
2020-11-20 09:14:39 -08:00
|
|
|
dart pub upgrade
|
2022-08-01 13:09:36 -07:00
|
|
|
dart run build_runner build --delete-conflicting-outputs
|
2020-02-08 06:29:31 -08:00
|
|
|
popd
|
|
|
|
|
2022-04-01 13:11:21 -07:00
|
|
|
pushd examples/migrations_example
|
2022-01-19 10:55:19 -08:00
|
|
|
echo "Testing migrations in migrations_example"
|
|
|
|
dart pub upgrade
|
|
|
|
dart test
|
|
|
|
popd
|