We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
セットアップの手間がかからないSQLiteでのテストは残しておきたいが、やっぱりデプロイ時に不安が残るのでCIでのテストは本番と同じPostgresで動くようにしたい。
api/config/config.json に適当な設定を追加して、.travis.yml をいい感じに設定してあげればすぐできると思う(検証に手間がかかるパターン)。
api/config/config.json
.travis.yml
The text was updated successfully, but these errors were encountered:
普通にやると、sqliteのときは同じconnectionを使いまわしてくれるのに、 postgresにするとなんかtesterとroutingの中でsql connectionが切り替わってしまうせいで、 routingの中でtransactionの中のinsertが見えずにつらくなってしまう...
Sorry, something went wrong.
あーなるほど……テストの構成をそもそも見直したほうがいいかもしれん
No branches or pull requests
セットアップの手間がかからないSQLiteでのテストは残しておきたいが、やっぱりデプロイ時に不安が残るのでCIでのテストは本番と同じPostgresで動くようにしたい。
api/config/config.json
に適当な設定を追加して、.travis.yml
をいい感じに設定してあげればすぐできると思う(検証に手間がかかるパターン)。The text was updated successfully, but these errors were encountered: