From 62ab3e98ff9f9d708615dc1ef3ec04ae27f89d00 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Wed, 30 Aug 2023 11:46:47 +0100 Subject: [PATCH] ci, windows: Do not run extended functional tests for pull requests This change is intended to speed up the CI feedback for pull requests. --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6e82386677..bdeb6914799 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -262,5 +262,7 @@ jobs: run: py -3 test\util\rpcauth-test.py - name: Run functional tests + env: + TEST_RUNNER_EXTRA: ${{ github.event_name != 'pull_request' && '--extended' || '' }} shell: cmd - run: py -3 test\functional\test_runner.py --ci --quiet --tmpdirprefix=%RUNNER_TEMP% --combinedlogslen=99999999 --timeout-factor=%TEST_RUNNER_TIMEOUT_FACTOR% --extended --exclude feature_dbcrash + run: py -3 test\functional\test_runner.py --ci --quiet --tmpdirprefix=%RUNNER_TEMP% --combinedlogslen=99999999 --timeout-factor=%TEST_RUNNER_TIMEOUT_FACTOR% %TEST_RUNNER_EXTRA%