Skip to content

Commit de55276

Browse files
mvoriseksebastianbergmann
authored andcommitted
Skip less E2E tests on Windows
1 parent 9e39cfb commit de55276

File tree

103 files changed

+0
-516
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+0
-516
lines changed

tests/end-to-end/cli/fail-on/fail-on-deprecation.phpt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
--TEST--
22
Test Runner exits with shell exit code indicating failure when all tests are successful but at least one test triggered a deprecation
3-
--SKIPIF--
4-
<?php declare(strict_types=1);
5-
if (DIRECTORY_SEPARATOR === '\\') {
6-
print "skip: this test does not work on Windows / GitHub Actions\n";
7-
}
83
--FILE--
94
<?php declare(strict_types=1);
105
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);

tests/end-to-end/cli/fail-on/fail-on-incomplete.phpt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
--TEST--
22
Test Runner exits with shell exit code indicating failure when all tests are successful but at least one test was marked incomplete
3-
--SKIPIF--
4-
<?php declare(strict_types=1);
5-
if (DIRECTORY_SEPARATOR === '\\') {
6-
print "skip: this test does not work on Windows / GitHub Actions\n";
7-
}
83
--FILE--
94
<?php declare(strict_types=1);
105
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);

tests/end-to-end/cli/fail-on/fail-on-notice.phpt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
--TEST--
22
Test Runner exits with shell exit code indicating failure when all tests are successful but at least one test triggered a notice
3-
--SKIPIF--
4-
<?php declare(strict_types=1);
5-
if (DIRECTORY_SEPARATOR === '\\') {
6-
print "skip: this test does not work on Windows / GitHub Actions\n";
7-
}
83
--FILE--
94
<?php declare(strict_types=1);
105
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);

tests/end-to-end/cli/fail-on/fail-on-risky.phpt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
--TEST--
22
Test Runner exits with shell exit code indicating failure when all tests are successful but at least one test was considered risky
3-
--SKIPIF--
4-
<?php declare(strict_types=1);
5-
if (DIRECTORY_SEPARATOR === '\\') {
6-
print "skip: this test does not work on Windows / GitHub Actions\n";
7-
}
83
--FILE--
94
<?php declare(strict_types=1);
105
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);

tests/end-to-end/cli/fail-on/fail-on-skipped.phpt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
--TEST--
22
Test Runner exits with shell exit code indicating failure when all tests are successful but at least one test was skipped
3-
--SKIPIF--
4-
<?php declare(strict_types=1);
5-
if (DIRECTORY_SEPARATOR === '\\') {
6-
print "skip: this test does not work on Windows / GitHub Actions\n";
7-
}
83
--FILE--
94
<?php declare(strict_types=1);
105
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);

tests/end-to-end/cli/fail-on/fail-on-warning.phpt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
--TEST--
22
Test Runner exits with shell exit code indicating failure when all tests are successful but at least one warning was triggered
3-
--SKIPIF--
4-
<?php declare(strict_types=1);
5-
if (DIRECTORY_SEPARATOR === '\\') {
6-
print "skip: this test does not work on Windows / GitHub Actions\n";
7-
}
83
--FILE--
94
<?php declare(strict_types=1);
105
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);

tests/end-to-end/cli/filter/filter-class-match-argument.phpt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
--TEST--
22
phpunit --filter FooTest tests/FooTest.php
3-
--SKIPIF--
4-
<?php declare(strict_types=1);
5-
if (DIRECTORY_SEPARATOR === '\\') {
6-
print "skip: this test does not work on Windows / GitHub Actions\n";
7-
}
83
--FILE--
94
<?php declare(strict_types=1);
105
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);

tests/end-to-end/cli/filter/filter-class-match-configuration.phpt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
--TEST--
22
phpunit --filter FooTest
3-
--SKIPIF--
4-
<?php declare(strict_types=1);
5-
if (DIRECTORY_SEPARATOR === '\\') {
6-
print "skip: this test does not work on Windows / GitHub Actions\n";
7-
}
83
--FILE--
94
<?php declare(strict_types=1);
105
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);

tests/end-to-end/cli/filter/filter-class-nomatch-argument.phpt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
--TEST--
22
phpunit --filter BarTest tests/FooTest.php
3-
--SKIPIF--
4-
<?php declare(strict_types=1);
5-
if (DIRECTORY_SEPARATOR === '\\') {
6-
print "skip: this test does not work on Windows / GitHub Actions\n";
7-
}
83
--FILE--
94
<?php declare(strict_types=1);
105
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);

tests/end-to-end/cli/filter/filter-class-nomatch-configuration.phpt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
--TEST--
22
phpunit --filter BarTest
3-
--SKIPIF--
4-
<?php declare(strict_types=1);
5-
if (DIRECTORY_SEPARATOR === '\\') {
6-
print "skip: this test does not work on Windows / GitHub Actions\n";
7-
}
83
--FILE--
94
<?php declare(strict_types=1);
105
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);

0 commit comments

Comments
 (0)