From eb67a075a60fabb7a178d065f6587aa8ec68dd24 Mon Sep 17 00:00:00 2001 From: ykim-1 Date: Fri, 6 Oct 2023 09:29:04 -0700 Subject: [PATCH] testing gh workflow file --- .github/workflows/e2e-suite.yml | 5 ++--- tests/integration/cli/test_help.py | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e-suite.yml b/.github/workflows/e2e-suite.yml index cdfa2425b..01aeca242 100644 --- a/.github/workflows/e2e-suite.yml +++ b/.github/workflows/e2e-suite.yml @@ -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 @@ -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 }} diff --git a/tests/integration/cli/test_help.py b/tests/integration/cli/test_help.py index 59249a432..8e67679a5 100644 --- a/tests/integration/cli/test_help.py +++ b/tests/integration/cli/test_help.py @@ -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