We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecb21c0 commit be25fa4Copy full SHA for be25fa4
src/Context/FeatureContext.php
@@ -464,6 +464,13 @@ private static function get_process_env_variables(): array {
464
465
$env = array_merge( $_ENV, $env );
466
467
+ foreach ( [ 'TEMP', 'TMP' ] as $key ) {
468
+ $value = getenv( $key );
469
+ if ( false !== $value ) {
470
+ $env[ $key ] = $value;
471
+ }
472
473
+
474
if ( self::running_with_code_coverage() ) {
475
$has_coverage_driver = ( new Runtime() )->hasXdebug() || ( new Runtime() )->hasPCOV();
476
0 commit comments