Skip to content

Commit d039298

Browse files
committed
Fix integration tests run.
squash! Fix integration tests run.
1 parent 2ff2c4e commit d039298

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

dev/tests/integration/framework/deployTestModules.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
include $file;
4242
}
4343

44-
if (!$settings->get('TESTS_PARALLEL_THREAD', 0)) {
44+
if ((int)$settings->get('TESTS_PARALLEL_RUN') !== 1) {
4545
// Only delete modules if we are not using parallel executions
4646
register_shutdown_function(
4747
'deleteTestModules',

dev/tests/integration/phpunit.xml.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
<!--<const name="MONGODB_DATABASE_NAME" value="magento_integration_tests"/>-->
7575
<!-- Connection parameters for RabbitMQ tests -->
7676
<!--<const name="RABBITMQ_MANAGEMENT_PORT" value="15672"/>-->
77+
<!--<const name="TESTS_PARALLEL_RUN" value="1"/>-->
7778
</php>
7879
<!-- Test listeners -->
7980
<listeners>

0 commit comments

Comments
 (0)