diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-09-20 09:51:48 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-09-20 09:41:41 +0200 |
commit | fac67b393ba4ff2f6698955b5f35433dec64ae51 (patch) | |
tree | 733ae0816d8e362e458bf0b79c4ba116443bc9e7 | |
parent | 226731ac1144886d693d3508b331f98727ab883c (diff) |
ci: Set --nocleanup for Windows functional tests
This avoids intermittent issues in the CI Task when a test passes
successfully. For example:
PermissionError: [WinError 32] The process cannot access the file because it is being used by another process: 'C:\\Users\\ContainerAdministrator\\AppData\\Local\\Temp\\test_runner_₿_🏃_20210920_072037\\feature_versionbits_warning_89\\alert.txt'
-rw-r--r-- | .cirrus.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 398f463ecc..c0530d5f8b 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -148,7 +148,7 @@ task: - python test\util\rpcauth-test.py functional_tests_script: # TODO enable '--extended' and drop '--exclude'. - - python test\functional\test_runner.py --ci --quiet --combinedlogslen=4000 --jobs=4 --timeout-factor=8 --exclude %EXCLUDE_TESTS% --failfast + - python test\functional\test_runner.py --nocleanup --ci --quiet --combinedlogslen=4000 --jobs=4 --timeout-factor=8 --exclude %EXCLUDE_TESTS% --failfast task: name: 'ARM [unit tests, no functional tests] [bullseye]' |