File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 8181 - name : Install dependencies
8282 run : composer install --prefer-dist --no-progress --no-interaction
8383
84+ - name : Mark Copilot session
85+ run : echo "COPILOT_CODING_AGENT=true" >> "$GITHUB_ENV"
86+
8487 - name : Smoke test feature suite (MySQL + Redis)
8588 env :
8689 APP_KEY : base64:i3g6f+dV8FfsIkcxqd7gbiPn2oXk5r00sTmdD6V5utI=
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ abstract class TestCase extends BaseTestCase
1717
1818 public static function setUpBeforeClass (): void
1919 {
20- if (getenv ('GITHUB_ACTIONS ' ) !== 'true ' ) {
20+ if (getenv ('GITHUB_ACTIONS ' ) !== 'true ' || getenv ( ' COPILOT_CODING_AGENT ' ) === ' true ' ) {
2121 if (TestSuiteSubscriber::getCurrentSuite () === 'feature ' ) {
2222 Dotenv::createImmutable (__DIR__ , '.env.feature ' )->safeLoad ();
2323 } elseif (TestSuiteSubscriber::getCurrentSuite () === 'unit ' ) {
You can’t perform that action at this time.
0 commit comments