Skip to content

Commit

Permalink
Update integration test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jonlamb-gh committed May 9, 2024
1 parent a4a567d commit 17ce6f1
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,19 +203,20 @@ jobs:
modality workspace inspect ${{env.MODALITY_WORKSPACE}}
modality segment list
- name: Evaluate specs over RTT data
- name: Evaluate specs
env:
MODALITY_AUTH_TOKEN: ${{env.MODALITY_AUTH_TOKEN}}
run: |
conform spec eval --name device-specs --segment "RTT:$GITHUB_RUN_NUMBER"
echo '# RTT Spec Coverage' >> $GITHUB_STEP_SUMMARY
conform spec coverage --format text --segment "RTT:$GITHUB_RUN_NUMBER" >> $GITHUB_STEP_SUMMARY
conform spec eval --name device-specs --segment "TCP:$GITHUB_RUN_NUMBER"
- name: Evaluate specs over TCP data
- name: Spec coverage
continue-on-error: true
env:
MODALITY_AUTH_TOKEN: ${{env.MODALITY_AUTH_TOKEN}}
run: |
conform spec eval --name device-specs --segment "TCP:$GITHUB_RUN_NUMBER"
echo '# RTT Spec Coverage' >> $GITHUB_STEP_SUMMARY
conform spec coverage --format text --segment "RTT:$GITHUB_RUN_NUMBER" >> $GITHUB_STEP_SUMMARY
echo '# TCP Spec Coverage' >> $GITHUB_STEP_SUMMARY
conform spec coverage --format text --segment "TCP:$GITHUB_RUN_NUMBER" >> $GITHUB_STEP_SUMMARY
Expand Down

0 comments on commit 17ce6f1

Please sign in to comment.