Skip to content

Commit 63b0044

Browse files
authored
ci: Disable creation of combined.html (#5518)
## Issue being fixed or feature implemented 40% smaller CI job artifacts. Should help with issues like https://gitlab.com/dashpay/dash/-/jobs/4759700026 in #5493. ## What was done? ## How Has This Been Tested? https://gitlab.com/UdjinM6/dash/-/jobs/4773517599 ## Breaking Changes n/a ## Checklist: - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone
1 parent d574ca6 commit 63b0044

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ci/dash/test_integrationtests.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ if [ "$BASEDIR" != "" ]; then
5151
[[ "$d" != "cache" ]] || continue # skip cache dir
5252
mkdir testlogs/$d
5353
PYTHONIOENCODING=UTF-8 ./test/functional/combine_logs.py -c ./testdatadirs/$BASEDIR/$d > ./testlogs/$d/combined.log
54-
PYTHONIOENCODING=UTF-8 ./test/functional/combine_logs.py --html ./testdatadirs/$BASEDIR/$d > ./testlogs/$d/combined.html
54+
# Disabled creation of combined.html: 40% smaller CI job artifacts
55+
# PYTHONIOENCODING=UTF-8 ./test/functional/combine_logs.py --html ./testdatadirs/$BASEDIR/$d > ./testlogs/$d/combined.html
5556
cd testdatadirs/$BASEDIR/$d
5657
LOGFILES="$(find . -name 'debug.log' -or -name "test_framework.log")"
5758
cd ../../..

0 commit comments

Comments
 (0)