8000 Windows debug · composer/composer@a7fee29 · GitHub
[go: up one dir, main page]

Skip to content

Commit a7fee29

Browse files
committed
Windows debug
1 parent e503ea5 commit a7fee29

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125

126126
- name: "Run tests"
127127
if: "matrix.php-version != '7.3'"
128-
run: "vendor/bin/simple-phpunit --verbose"
128+
run: "vendor/bin/simple-phpunit --verbose --filter testExcludeFromClassmap"
129129

130130
- name: "Run complete test suite on 7.3"
131131
if: "matrix.php-version == '7.3'"

src/Composer/Util/ProcessExecutor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ private function runProcess($command, ?string $cwd, ?array $env, bool $tty, &$ou
126126
if (Platform::isWindows() && \strlen($command[0]) === strcspn($command[0], ':/\\')) {
127127
$command[0] = self::getExecutable($command[0]);
128128
}
129-
129+
Platform::isWindows() && var_dump($command);
130130
$process = new Process($command, $cwd, $env, null, static::getTimeout());
131131
}
132132

0 commit comments

Comments
 (0)
0