2017-07-10 21:49:00 +00:00
|
|
|
#!/usr/bin/env bash
|
2019-04-08 16:58:41 +00:00
|
|
|
export POSTGRES_USERNAME="angel_orm"
|
|
|
|
export POSTGRES_PASSWORD="angel_orm"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function angel_orm_test () {
|
|
|
|
cd $1;
|
|
|
|
pub get;
|
|
|
|
pub run test;
|
|
|
|
cd ..
|
|
|
|
}
|
|
|
|
|
|
|
|
cd angel_orm_generator;
|
|
|
|
pub get;
|
|
|
|
pub run build_runner build;
|
|
|
|
cd ..;
|
|
|
|
angel_orm_test angel_orm_postgres
|