@@ -3,6 +3,14 @@ name: Integration Tests
33on :
44 workflow_dispatch :
55 inputs :
6+ run_aclp_logs_stream_tests :
7+ description : ' Set this parameter to "true" to run ACLP logs stream related test cases'
8+ required : false
9+ default : ' false'
10+ type : choice
11+ options :
12+ - ' true'
13+ - ' false'
614 run_db_fork_tests :
715 description : ' Set this parameter to "true" to run fork database related test cases'
816 required : false
5563 - dev
5664
5765env :
58- DEFAULT_PYTHON_VERSION : " 3.10 "
59- EOL_PYTHON_VERSION : " 3.9 "
66+ DEFAULT_PYTHON_VERSION : " 3.13 "
67+ EOL_PYTHON_VERSION : " 3.10 "
6068 EXIT_STATUS : 0
6169
6270jobs :
@@ -99,13 +107,13 @@ jobs:
99107 run : |
100108 timestamp=$(date +'%Y%m%d%H%M')
101109 report_filename="${timestamp}_sdk_test_report.xml"
102- make test-int RUN_DB_FORK_TESTS=${{ github.event.inputs.run_db_fork_tests }} RUN_DB_TESTS=${{ github.event.inputs.run_db_tests }} TEST_SUITE="${{ github.event.inputs.test_suite }}" TEST_ARGS="--junitxml=${report_filename}"
110+ make test-int RUN_DB_FORK_TESTS=${{ github.event.inputs.run_db_fork_tests }} RUN_DB_TESTS=${{ github.event.inputs.run_db_tests }} RUN_ACLP_LOGS_STREAM_TESTS=${{ github.event.inputs.run_aclp_logs_stream_tests }} TEST_SUITE="${{ github.event.inputs.test_suite }}" TEST_ARGS="--junitxml=${report_filename}"
103111 env :
104112 LINODE_TOKEN : ${{ env.LINODE_TOKEN }}
105113
106114 - name : Upload Test Report as Artifact
107115 if : always()
108- uses : actions/upload-artifact@v6
116+ uses : actions/upload-artifact@v7
109117 with :
110118 name : test-report-file
111119 if-no-files-found : ignore
@@ -241,7 +249,7 @@ jobs:
241249 steps :
242250 - name : Notify Slack
243251 id : main_message
244- uses : slackapi/slack-github-action@v2.1.1
252+ uses : slackapi/slack-github-action@v3
245253 with :
246254 method : chat.postMessage
247255 token : ${{ secrets.SLACK_BOT_TOKEN }}
@@ -273,7 +281,7 @@ jobs:
273281
274282 - name : Test summary thread
275283 if : success()
276- uses : slackapi/slack-github-action@v2.1.1
284+ uses : slackapi/slack-github-action@v3
277285 with :
278286 method : chat.postMessage
279287 token : ${{ secrets.SLACK_BOT_TOKEN }}
0 commit comments