Closed pwtyler closed 2 months ago
Provides the option to skip checking that wp-config needs to be writable. Allows commands like wp config has to run on a read-only file system.
wp config has
First part of addressing https://github.com/wp-cli/config-command/issues/184
WCUS Contributor Day 5985
Note, $this->expectNotToPerformAssertions(); is not supported by the version of PHPUnit used in our 5.6 tests, so using the @doesNotPerformAssertions annotation instead.
$this->expectNotToPerformAssertions();
@doesNotPerformAssertions
Provides the option to skip checking that wp-config needs to be writable. Allows commands like
wp config has
to run on a read-only file system.First part of addressing https://github.com/wp-cli/config-command/issues/184
WCUS Contributor Day 5985
Note,
$this->expectNotToPerformAssertions();
is not supported by the version of PHPUnit used in our 5.6 tests, so using the@doesNotPerformAssertions
annotation instead.