-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
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
整理:エンジンビルド後のテストの待機時間を可変に #1203
The head ref may contain hidden characters: "fix\uFF1A\u30A8\u30F3\u30B8\u30F3\u30D3\u30EB\u30C9\u5F8C\u306E\u30C6\u30B9\u30C8\u304CmacOS\u3067\u843D\u3061\u308B\u306E\u3092\u89E3\u6D88"
整理:エンジンビルド後のテストの待機時間を可変に #1203
Conversation
問題としていたものを解決する手段ではありませんでしたが、テスト時間が短くなるはずのリファクタリングでもあるので、draftを開けてレビュー可能としたいと思います! |
# バージョン取得テスト | ||
req = Request(base_url + "version") | ||
with urlopen(req) as res: | ||
assert len(res.read()) > 0 | ||
# 起動待機 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
バージョンが取得できることはまあここでのテストの意図ではないかなと思ったので、起動待機に意図を変更しました。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM👍️
ENGINE のウォームアップ時間を段階的に増加させ、最小限の待機時間を実現しています。CI 高速化により開発体験が向上しますね、good work!
レビューありがとうございます! |
内容
ビルド後のテストで、エンジンの待機が一律で60秒だったのを、15秒〜150秒にしました。
これで早めにエンジン起動が終わった場合は早めにテストが終わると思います。
サーバーの待機を60秒から15秒×10回にします。
その他
macosで動かない問題の解決になると思っていたPRですが、そもそも環境が良くなくて落ちてたっぽく、起動時間は関係ありませんでした。
↑の解決PRはこちらです。