Skip to content

Commit

Permalink
testing gh workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
ykim-akamai committed Oct 6, 2023
1 parent 8619b72 commit eb67a07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/e2e-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
integration-tests:
name: Run integration tests
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Clone Repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -40,9 +41,7 @@ jobs:
timestamp=$(date +'%Y%m%d%H%M')
report_filename="${timestamp}_cli_test_report.xml"
status=0
if ! pytest tests/integration --disable-warnings --junitxml="${report_filename}"; then
echo "Tests failed, but attempting to upload results anyway"
fi
pytest tests/integration --disable-warnings --junitxml="${report_filename}"
env:
LINODE_CLI_TOKEN: ${{ secrets.LINODE_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion tests/integration/cli/test_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def test_help_page_for_non_aliased_actions():
"API Documentation: https://www.linode.com/docs/api/linode-instances/#linodes-list"
in output
)
assert "You may filter results with:" in output
assert "wrong assertion" in output
assert "--tags" in output


Expand Down

0 comments on commit eb67a07

Please sign in to comment.