File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -44,10 +44,11 @@ composer run-script static_check
4444# Run unit tests
4545composerCommandToRunUnitTests=(composer run-script --)
4646phpUnitConfigFile=$( php ./tests/ElasticApmTests/Util/runSelectPhpUnitConfigFile.php --tests-type=unit)
47- composerCommandToRunUnitTests=(" ${composerCommandToRunUnitTests[@]} " run_unit_tests_custom_config -c " ${phpUnitConfigFile} )
47+ composerCommandToRunUnitTests=(" ${composerCommandToRunUnitTests[@]} " run_unit_tests_custom_config -c " ${phpUnitConfigFile} " )
4848if [ " ${ELASTIC_APM_PHP_TESTS_AGENT_ENABLED_CONFIG_DEFAULT:? } " == " false" ]; then
49- composerCommandToRunUnitTests=(" ${composerCommandToRunUnitTests[@]} " --filter " AgentEnabledConfigUnitTest" )
49+ composerCommandToRunUnitTests=(" ${composerCommandToRunUnitTests[@]} " --filter AgentEnabledConfigUnitTest)
5050fi
51+ echo " composerCommandToRunUnitTests: ${composerCommandToRunUnitTests[@]} "
5152" ${composerCommandToRunUnitTests[@]} "
5253ls -l ./build/unit-tests-phpunit-junit.xml
5354
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ function runComponentTests () {
3131 composerCommand=(" ${composerCommand[@]} " --filter " ${ELASTIC_APM_PHP_TESTS_FILTER} " )
3232 fi
3333 else
34- composerCommand=(" ${composerCommand[@]} " --filter " AgentEnabledConfigComponentTest" )
34+ composerCommand=(" ${composerCommand[@]} " --filter AgentEnabledConfigComponentTest)
3535 fi
3636
3737 local initialTimeoutInMinutes=30
You can’t perform that action at this time.
0 commit comments