Skip to content
Snippets Groups Projects
Commit 5599ca44 authored by Ghislain Loas's avatar Ghislain Loas
Browse files

dev_178030 wip : fix memory leak on php7.4 : split testSuites

parent a72bcf15
No related merge requests found
Pipeline #25165 passed with stage
in 15 minutes and 18 seconds
......@@ -5,19 +5,6 @@ variables:
MYSQL_ROOT_PASSWORD: root
BOKEH_HTML_VALIDATOR_URL: "http://sthysel__nuhtml:8888"
test:php74_bokeh:
image: bokeh_php74_with_chrome
services:
- localhost:5000/bokeh_mariadb_10.3
- sthysel/nuhtml
script:
- bash scripts/ci_data_preparation.sh $MYSQL_DATABASE $MYSQL_HOST $MYSQL_ROOT_PASSWORD
- bash build_bokeh.sh $MYSQL_DATABASE root $MYSQL_ROOT_PASSWORD $MYSQL_HOST
except:
- tags
tags:
- bladerunner
test:php74_other:
image: bokeh_php74_with_chrome
......@@ -47,20 +34,6 @@ test:php74_scenario:
- bladerunner
test:php81_bokeh:
image: bokeh_php81
services:
- localhost:5000/bokeh_mariadb_10.3
- sthysel/nuhtml
script:
- bash scripts/ci_data_preparation.sh $MYSQL_DATABASE $MYSQL_HOST $MYSQL_ROOT_PASSWORD
- bash build_bokeh.sh $MYSQL_DATABASE root $MYSQL_ROOT_PASSWORD $MYSQL_HOST
except:
- tags
tags:
- bladerunner
test:php81_other:
image: bokeh_php81
services:
......
......@@ -8,6 +8,9 @@ source ./build_bokeh_config.sh $DBNAME $DBUSER $DBPASS $DBHOST
EARLY_DESC=`php -r "echo version_compare(PHP_VERSION, '8.1', '>=') ? '--fail-error-with-desc' : '';"`
phpunit -c tests/phpunit.xml --list-suites $EARLY_DESC \
&& phpunit -c tests/phpunit.xml --exclude-group no-ci $EARLY_DESC
phpunit -c tests/phpunit_eco.xml --list-suites $EARLY_DESC \
&& phpunit -c tests/phpunit_eco.xml $EARLY_DESC \
&& phpunit -c tests/phpunit_db.xml --list-suites $EARLY_DESC \
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment