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/e2e-test.yml
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -4,18 +4,18 @@ on:
4
4
workflow_dispatch:
5
5
inputs:
6
6
use_minimal_test_account:
7
-
description: 'Use minimal test account'
7
+
description: 'Indicate whether to use a minimal test account with limited resources for testing. Defaults to "false"'
8
8
required: false
9
9
default: 'false'
10
10
sha:
11
-
description: 'The hash value of the commit'
12
-
required: false
11
+
description: 'Specify commit hash to test. This value is mandatory to ensure the tests run against a specific commit'
12
+
required: true
13
13
default: ''
14
14
python-version:
15
-
description: 'Specify Python version to use'
15
+
description: 'Specify the Python version to use for running tests. Leave empty to use the default Python version configured in the environment'
16
16
required: false
17
17
run-eol-python-version:
18
-
description: 'Run EOL python version?'
18
+
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'
make testint TEST_ARGS="--junitxml=${report_filename}"
75
+
make test-int TEST_ARGS="--junitxml=${report_filename}"
76
76
env:
77
77
LINODE_TOKEN: ${{ env.LINODE_TOKEN }}
78
78
@@ -159,7 +159,7 @@ jobs:
159
159
notify-slack:
160
160
runs-on: ubuntu-latest
161
161
needs: [integration-tests]
162
-
if: ${{ (success() || failure()) && github.repository == 'linode/linode_api4-python' }} # Run even if integration tests fail and only on main repository
162
+
if: ${{ (success() || failure()) }} # Run even if integration tests fail and only on main repository
0 commit comments