@@ -2,7 +2,7 @@ name: Slow tests on important models (on Push - A10)
2
2
3
3
on :
4
4
push :
5
- branches : [ main ]
5
+ branches : [ add-new-push-test-workflow ]
6
6
7
7
env :
8
8
RUN_SLOW : " yes"
@@ -66,59 +66,26 @@ jobs:
66
66
- name : Run FA2 tests
67
67
id : run_fa2_tests
68
68
run :
69
- pytest -m "flash_attn_test" tests/${{ matrix.model-name }}/test_modeling_*
70
- - name : Post results Slack channel
69
+ pytest -m "flash_attn_test" --make-reports=${{ matrix.model-name }}_fa2_tests/ tests/${{ matrix.model-name }}/test_modeling_*
70
+ - name : Post to Slack
71
71
if : always()
72
- id : post-slack-fa2
73
- uses : slackapi/slack-github-action@6c661ce58804a1a20f6dc5fbee7f0381b469e001
72
+ uses : ./.github/workflows/send-slack.yml
74
73
with :
75
- # Slack channel id, channel name, or user id to post message.
76
- # See also: https://api.slack.com/methods/chat.postMessage#channels
77
- channel-id : ${{ env.OUTPUT_SLACK_CHANNEL_ID }}
78
- # For posting a rich message using Block Kit
79
- payload : |
80
- {
81
- "text": "Slow FA 2 tests on ${{ matrix.model-name }} result: ${{ steps.run_fa2_tests.conclusion }}\n\n${{ github.event.pull_request.html_url || github.event.head_commit.url }}",
82
- "blocks": [
83
- {
84
- "type": "section",
85
- "text": {
86
- "type": "mrkdwn",
87
- "text": "FA2 tests for ${{ matrix.model-name }}: ${{ steps.run_fa2_tests.conclusion }}\n\n Commit: ${{ github.event.pull_request.html_url || github.event.head_commit.url }} \n\n Action URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
88
- }
89
- }
90
- ]
91
- }
92
- env :
93
- SLACK_BOT_TOKEN : ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}
74
+ slack_channel : ${{ env.OUTPUT_SLACK_CHANNEL_ID }}
75
+ title : FA2 tests - ${{ matrix.model-name }}
76
+ status : ${{ steps.run_fa2_tests.conclusion}}
77
+ secrets : inherit
94
78
95
79
- name : Run integration tests
96
80
id : run_integration_tests
97
81
if : always()
98
82
run :
99
83
pytest -k "IntegrationTest" tests/${{ matrix.model-name }}/test_modeling_*
100
- - name : Post results Slack channel
84
+ - name : Post to Slack
101
85
if : always()
102
- id : post-slack-integration-tests
103
-
104
- uses : slackapi/slack-github-action@6c661ce58804a1a20f6dc5fbee7f0381b469e001
86
+ uses : ./.github/workflows/send-slack.yml
105
87
with :
106
- # Slack channel id, channel name, or user id to post message.
107
- # See also: https://api.slack.com/methods/chat.postMessage#channels
108
- channel-id : ${{ env.OUTPUT_SLACK_CHANNEL_ID }}
109
- # For posting a rich message using Block Kit
110
- payload : |
111
- {
112
- "text": "Slow integration tests on ${{ matrix.model-name }} result: ${{ steps.run_integration_tests.conclusion }}\n\n${{ github.event.pull_request.html_url || github.event.head_commit.url }}",
113
- "blocks": [
114
- {
115
- "type": "section",
116
- "text": {
117
- "type": "mrkdwn",
118
- "text": "Integration tests on ${{ matrix.model-name }}: ${{ steps.run_integration_tests.conclusion}}\n\n Commit: ${{ github.event.pull_request.html_url || github.event.head_commit.url }} \n\n Action URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
119
- }
120
- }
121
- ]
122
- }
123
- env :
124
- SLACK_BOT_TOKEN : ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}
88
+ slack_channel : ${{ env.OUTPUT_SLACK_CHANNEL_ID }}
89
+ title : Integration tests - ${{ matrix.model-name }}
90
+ status : ${{ steps.run_integration_tests.conclusion}}
91
+ secrets : inherit
0 commit comments