-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test/workflow: Update make test commands and related workflows #498
Merged
ykim-akamai
merged 3 commits into
linode:dev
from
ykim-akamai:test/update_make_test_commands_and_workflows
Jan 27, 2025
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,18 +4,18 @@ on: | |
workflow_dispatch: | ||
inputs: | ||
use_minimal_test_account: | ||
description: 'Use minimal test account' | ||
description: 'Indicate whether to use a minimal test account with limited resources for testing. Defaults to "false"' | ||
required: false | ||
default: 'false' | ||
sha: | ||
description: 'The hash value of the commit' | ||
required: false | ||
description: 'Specify commit hash to test. This value is mandatory to ensure the tests run against a specific commit' | ||
required: true | ||
default: '' | ||
python-version: | ||
description: 'Specify Python version to use' | ||
description: 'Specify the Python version to use for running tests. Leave empty to use the default Python version configured in the environment' | ||
required: false | ||
run-eol-python-version: | ||
description: 'Run EOL python version?' | ||
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' | ||
required: false | ||
default: 'false' | ||
type: choice | ||
|
@@ -28,8 +28,8 @@ on: | |
- dev | ||
|
||
env: | ||
DEFAULT_PYTHON_VERSION: "3.9" | ||
EOL_PYTHON_VERSION: "3.8" | ||
DEFAULT_PYTHON_VERSION: "3.10" | ||
EOL_PYTHON_VERSION: "3.9" | ||
EXIT_STATUS: 0 | ||
|
||
jobs: | ||
|
@@ -72,7 +72,7 @@ jobs: | |
run: | | ||
timestamp=$(date +'%Y%m%d%H%M') | ||
report_filename="${timestamp}_sdk_test_report.xml" | ||
make testint TEST_ARGS="--junitxml=${report_filename}" | ||
make test-int TEST_ARGS="--junitxml=${report_filename}" | ||
env: | ||
LINODE_TOKEN: ${{ env.LINODE_TOKEN }} | ||
|
||
|
@@ -159,7 +159,7 @@ jobs: | |
notify-slack: | ||
runs-on: ubuntu-latest | ||
needs: [integration-tests] | ||
if: ${{ (success() || failure()) && github.repository == 'linode/linode_api4-python' }} # Run even if integration tests fail and only on main repository | ||
if: ${{ (success() || failure()) }} # Run even if integration tests fail and only on main repository | ||
steps: | ||
- name: Notify Slack | ||
uses: slackapi/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bump default python version to 3.10 and EOL version to 3.9