-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
121 changed files
with
652,068 additions
and
1,001 deletions.
There are no files selected for viewing
This file contains 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 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,71 @@ | ||
name: Analyses Snapshot Test | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
TARGET: | ||
description: 'Target branch or tag' | ||
required: true | ||
default: 'edge' | ||
TEST_SOURCE: | ||
description: 'Target for the test code' | ||
required: true | ||
default: 'edge' | ||
schedule: | ||
- cron: '0 7-8 * * *' # Random time between 2-3 AM EST (7-8 AM UTC) | ||
|
||
jobs: | ||
build-and-test: | ||
runs-on: ubuntu-latest | ||
env: | ||
TARGET: ${{ github.event.inputs.TARGET || 'edge' }} | ||
TEST_SOURCE: ${{ github.event.inputs.TEST_SOURCE || 'edge' }} | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ env.TEST_SOURCE }} | ||
|
||
- name: Docker Build | ||
working-directory: app-testing | ||
run: make build-opentrons-analysis | ||
|
||
- name: Set up Python 3.12 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
cache: 'pipenv' | ||
cache-dependency-path: app-testing/Pipfile.lock | ||
|
||
- name: Setup Python Dependencies | ||
working-directory: app-testing | ||
run: make setup | ||
|
||
- name: Run Test | ||
id: run_test | ||
working-directory: app-testing | ||
run: make snapshot-test | ||
|
||
- name: Upload Report | ||
if: '!cancelled()' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: test-report | ||
path: app-testing/results/ | ||
|
||
- name: Handle Test Failure | ||
if: failure() | ||
working-directory: app-testing | ||
run: make snapshot-test-update | ||
|
||
- name: Create Snapshot update Request | ||
if: failure() | ||
uses: peter-evans/create-pull-request@v5 | ||
with: | ||
commit-message: 'fix(app-testing): snapshot failure capture' | ||
title: 'Evaluate Analyses Snapshot Update ${{ env.TARGET }}' | ||
body: 'This PR is an automated snapshot update request. Please review the changes and merge if they are acceptable or find you bug and fix it.' | ||
branch: 'app-testing/${{ env.TARGET }}-from-${{ env.TEST_SOURCE}}' | ||
base: ${{ env.TEST_SOURCE}} | ||
|
This file contains 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 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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
.env | ||
results | ||
analysis_results/*.json |
This file contains 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 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.