-
Notifications
You must be signed in to change notification settings - Fork 200
Run comparison integration tests without skills #2183
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
Closed
JasonYeMSFT (JasonYeMSFT)
wants to merge
4
commits into
microsoft:main
from
JasonYeMSFT:chuye/comparison-deploy-tests
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| # Comparison integration tests (no skills). | ||
| # | ||
| # Runs azure-deploy deployment tests with NO_SKILLS=true on Sundays as a | ||
| # baseline / comparison run against the regular weekday integration tests. | ||
| # This workflow has its own name so downstream automation (e.g. the | ||
| # "Analyze Test Run" agentic workflow that listens to "Integration Tests - all") | ||
| # does not get triggered by the Sunday baseline runs. | ||
|
|
||
| name: Integration Tests - comparison (no skills) | ||
|
|
||
| permissions: | ||
| id-token: write | ||
| contents: read | ||
|
|
||
| on: | ||
| schedule: | ||
| # 4:00 AM PST Sun (12:00 PM UTC Sun) — comparison runs that don't use skills | ||
| - cron: "0 12 * * 0" | ||
| workflow_dispatch: | ||
| inputs: | ||
| model-override: | ||
| description: "Model to use for testing" | ||
| required: false | ||
| type: choice | ||
| options: | ||
| - claude-sonnet-4.5 | ||
| - claude-opus-4.5 | ||
| test-pattern: | ||
| description: 'Optional: Comma separated patterns by name or describe block. If empty, all tests will be run.' | ||
| required: false | ||
| type: string | ||
| default: "" | ||
| debug: | ||
| description: "Whether to set DEBUG=1 for jest tests" | ||
| required: false | ||
| type: boolean | ||
| default: false | ||
|
|
||
| jobs: | ||
| azure-deploy: | ||
| name: Integration – azure-deploy (no skills) | ||
| if: github.repository == 'microsoft/GitHub-Copilot-for-Azure' | ||
| uses: ./.github/workflows/test-azure-deploy.yml | ||
| with: | ||
| model-override: ${{ inputs.model-override }} | ||
| test-pattern: ${{ inputs.test-pattern }} | ||
| debug: ${{ inputs.debug || false }} | ||
| publish-reports: ${{ github.event_name == 'schedule' }} | ||
| no-skills: true | ||
| secrets: | ||
| COPILOT_CLI_TOKEN: ${{ secrets.COPILOT_CLI_TOKEN }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.