From e2fe947cb44e9499590cef3309bc315e10923d13 Mon Sep 17 00:00:00 2001 From: florian Date: Wed, 2 Aug 2023 17:39:18 +0200 Subject: [PATCH] ci/cd - fix tests UI not showing logs --- CHANGELOG.md | 7 ++++--- tests/ui/tests.sh | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e80d8665..b6028b94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,11 +10,12 @@ - [BUGFIX] Variable being ignored instead of saved in the database when value is empty - [BUGFIX] ALLOWED_METHODS regex working with LOCK/UNLOCK methods - [BUGFIX] Custom certificate bug after the refactoring -- [BUGFIX] Fix wrong variables in header phase (fix CORS feature too) -- [BUGFIX] Fix UI not working in Ubuntu (python zope module) +- [BUGFIX] Wrong variables in header phase (fix CORS feature too) +- [BUGFIX] UI not working in Ubuntu (python zope module) - [BUGFIX] Patch ModSecurity to run it after LUA code (should fix whitelist problems) - [BUGFIX] Custom configurations from env were not being deleted properly -- [BUGFIX] Fix concepts image not displayed in the documentation +- [BUGFIX] Missing concepts image not displayed in the documentation +- [BUGFIX] Scheduler not picking up new instances IPs in autoconf modes - [PERFORMANCE] Reduce CPU and RAM usage of scheduler - [PERFORMANCE] Cache ngx.ctx instead of loading it each time - [PERFORMANCE] Use per-worker LRU cache for common RO LUA values diff --git a/tests/ui/tests.sh b/tests/ui/tests.sh index 98099c3c..7fbffb25 100755 --- a/tests/ui/tests.sh +++ b/tests/ui/tests.sh @@ -52,9 +52,9 @@ fi docker-compose -f docker-compose.test.yml up --abort-on-container-exit --exit-code-from ui-tests ret=$? if [ $ret -ne 0 ] ; then - docker-compose -f docker-compose.test.yml logs + docker-compose logs echo "❌ Up failed" fi # Exit -exit $ret \ No newline at end of file +exit $? \ No newline at end of file