File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22 pull_request :
33 workflow_dispatch :
44 inputs :
5+ run_aclp_logs_stream_tests :
6+ description : ' Set this parameter to "true" to run ACLP logs stream related test cases'
7+ required : false
8+ default : ' false'
9+ type : choice
10+ options :
11+ - ' true'
12+ - ' false'
513 run_db_fork_tests :
614 description : ' Set this parameter to "true" to run fork database related test cases'
715 required : false
@@ -104,7 +112,7 @@ jobs:
104112 run : |
105113 timestamp=$(date +'%Y%m%d%H%M')
106114 report_filename="${timestamp}_sdk_test_report.xml"
107- make test-int RUN_DB_FORK_TESTS=${{ github.event.inputs.run_db_fork_tests }} RUN_DB_TESTS=${{ github.event.inputs.run_db_tests }} TEST_ARGS="--junitxml=${report_filename}" TEST_SUITE="${{ github.event.inputs.test_suite }}"
115+ 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_ARGS="--junitxml=${report_filename}" TEST_SUITE="${{ github.event.inputs.test_suite }}"
108116 env :
109117 LINODE_TOKEN : ${{ secrets.LINODE_TOKEN }}
110118
Original file line number Diff line number Diff line change @@ -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
1826 type : choice
1927 options :
2028 - ' true'
21- - ' false'
29+ - ' false' tox
2230 test_suite :
2331 description : ' Enter specific test suite. E.g. domain, linode_client'
2432 required : false
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
You can’t perform that action at this time.
0 commit comments