From f54ce64ba1b81d104f9a1b6544a4b0dd45c6ee0d Mon Sep 17 00:00:00 2001 From: Slava Semushin Date: Fri, 30 Aug 2024 21:03:45 +0700 Subject: [PATCH] ci: update hurl to 5.0.1 --- .github/workflows/integration-tests.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index cfcf580..3b0503d 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -84,7 +84,7 @@ jobs: - name: Install Hurl run: | - VER=4.3.0 + VER=5.0.1 DEB=hurl_${VER}_amd64.deb curl --location --no-progress-meter --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/$VER/$DEB sudo dpkg --install $DEB @@ -98,9 +98,7 @@ jobs: --error-format long \ --variable SERVER_URL=http://127.0.0.1:${{ matrix.application-port }} \ --variable skip_500_error_testing=${{ matrix.skip_500_error_testing }} \ - --test \ - tests/crud.hurl \ - tests/misc.hurl + --test tests/ - name: Show application logs if: failure()