Skip to content

Commit 2c1db3e

Browse files
committed
Account for new warnings
1 parent bdc4106 commit 2c1db3e

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

features/install-wp-tests.feature

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,9 @@ Feature: Scaffold install-wp-tests.sh tests
7676
install_test_suite
7777
"""
7878

79-
# Hardcoded for GHA, needs to be made more flexible for local setups.
80-
When I run `mysql -u{DB_USER} -p{DB_PASSWORD} -h{MYSQL_HOST} -P{MYSQL_PORT} --protocol=tcp -e "SHOW DATABASES"`
79+
# TODO: Hardcoded for GHA, needs to be made more flexible for local setups.
80+
# This throws a warning for the password provided via command line.
81+
When I try `mysql -u{DB_USER} -p{DB_PASSWORD} -h{MYSQL_HOST} -P{MYSQL_PORT} --protocol=tcp -e "SHOW DATABASES"`
8182
And STDOUT should contain:
8283
"""
8384
wp_cli_test_scaffold
@@ -175,8 +176,9 @@ Feature: Scaffold install-wp-tests.sh tests
175176
install_test_suite
176177
"""
177178
178-
# Hardcoded for GHA, needs to be made more flexible for local setups.
179-
When I run `mysql -u{DB_USER} -p{DB_PASSWORD} -h{MYSQL_HOST} -P{MYSQL_PORT} --protocol=tcp -e "SHOW DATABASES"`
179+
# TODO: Hardcoded for GHA, needs to be made more flexible for local setups.
180+
# This throws a warning for the password provided via command line.
181+
When I try `mysql -u{DB_USER} -p{DB_PASSWORD} -h{MYSQL_HOST} -P{MYSQL_PORT} --protocol=tcp -e "SHOW DATABASES"`
180182
And STDOUT should contain:
181183
"""
182184
wp_cli_test_scaffold
@@ -241,8 +243,9 @@ Feature: Scaffold install-wp-tests.sh tests
241243
install_test_suite
242244
"""
243245
244-
# Hardcoded for GHA, needs to be made more flexible for local setups.
245-
When I run `mysql -u{DB_USER} -p{DB_PASSWORD} -h{MYSQL_HOST} -P{MYSQL_PORT} --protocol=tcp -e "SHOW DATABASES"`
246+
# TODO: Hardcoded for GHA, needs to be made more flexible for local setups.
247+
# This throws a warning for the password provided via command line.
248+
When I try `mysql -u{DB_USER} -p{DB_PASSWORD} -h{MYSQL_HOST} -P{MYSQL_PORT} --protocol=tcp -e "SHOW DATABASES"`
246249
And STDOUT should contain:
247250
"""
248251
wp_cli_test_scaffold

0 commit comments

Comments
 (0)