Skip to content

Commit 732858c

Browse files
committed
Do not use install-config-mysql.travis.php.dist
It is removed in 2.4-develop since Magento itself does not run on Travis anymore
1 parent edd7cd9 commit 732858c

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.travis.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,10 @@ jobs:
3535
- TEST_SUITE=unit
3636
- COVERAGE=true
3737
allow_failures:
38-
- php: 7.4
39-
env:
40-
- MAGENTO_VERSION=2.4-develop
41-
- TEST_SUITE=integration
42-
38+
- php: 7.4
39+
env:
40+
- MAGENTO_VERSION=2.4-develop
41+
- TEST_SUITE=integration
4342
env:
4443
global:
4544
- COMPOSER_BIN_DIR=~/bin

.travis/before_script.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,11 @@ case $TEST_SUITE in
5050
SET @@global.sql_mode = NO_ENGINE_SUBSTITUTION;
5151
CREATE DATABASE magento_integration_tests;
5252
'
53-
cp etc/install-config-mysql.travis.php.dist etc/install-config-mysql.php
53+
cp etc/install-config-mysql.php.dist etc/install-config-mysql.php
54+
# Remove AMQP configuration
5455
sed -i '/amqp/d' etc/install-config-mysql.php
56+
# Remove default root password
57+
sed -i 's/123123q//' etc/install-config-mysql.php
5558

5659
cd ../../..
5760
;;

0 commit comments

Comments
 (0)