You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/integration-tests-pr.yml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -2,14 +2,14 @@ on:
2
2
pull_request:
3
3
workflow_dispatch:
4
4
inputs:
5
-
tests:
6
-
description: 'The tests to run.'
5
+
test_suite:
6
+
description: "Specify test suite to run from the 'tests/integration/targets' directory. Examples: 'domain_basic', 'image_basic', etc. If not provided, all suites are executed"
7
7
required: false
8
8
sha:
9
-
description: 'The hash value of the commit.'
9
+
description: 'Specify commit hash to test. This value is mandatory to ensure the tests run against a specific commit'
10
10
required: true
11
11
pull_request_number:
12
-
description: 'The number of the PR.'
12
+
description: 'Specify pull request number associated with the commit. Optional, but recommended when providing a commit hash (sha)'
Copy file name to clipboardExpand all lines: .github/workflows/integration-tests.yml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -4,10 +4,10 @@ on:
4
4
workflow_dispatch:
5
5
inputs:
6
6
python-version:
7
-
description: 'Specify Python version to use'
7
+
description: 'Specify the Python version to use for running tests. Leave empty to use the default Python version configured in the environment'
8
8
required: false
9
9
run-eol-python-version:
10
-
description: 'Run EOL python version?'
10
+
description: 'Indicates whether to run tests using an End-of-Life (EOL) Python version. Defaults to "false". Choose "true" to include tests for deprecated Python versions'
0 commit comments