aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2023-08-30 11:46:47 +0100
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2023-08-30 11:46:47 +0100
commit62ab3e98ff9f9d708615dc1ef3ec04ae27f89d00 (patch)
tree84a157ede6345fca3fae3c6cc2aa53c04f4e6ee1 /.github
parentab42b2ebdbf61225e636e4c00068fd29b2790d41 (diff)
downloadbitcoin-62ab3e98ff9f9d708615dc1ef3ec04ae27f89d00.tar.xz
ci, windows: Do not run extended functional tests for pull requests
This change is intended to speed up the CI feedback for pull requests.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e6e8238667..bdeb691479 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%