File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,13 @@ async function githubMatrix() {
19
19
20
20
let { include : suites } = JSON . parse ( stdout ) as { include : { name : string ; command : string } [ ] ; name : string [ ] } ;
21
21
22
+ // these test
23
+ let temporaryWindowsIgnoreTests = [
24
+ 'core-resolver-test' ,
25
+ 'canary-compat-stage2-build-static-with-rules' ,
26
+ 'canary-compat-exclude-dot-files' ,
27
+ ] ;
28
+
22
29
let include = [
23
30
...suites . map ( s => ( {
24
31
name : `${ s . name } ubuntu` ,
@@ -30,6 +37,7 @@ async function githubMatrix() {
30
37
. filter ( s => s . name !== 'jest-suites' ) // TODO: jest tests do not work under windows yet
31
38
. filter ( s => ! s . name . includes ( 'watch-mode' ) ) // TODO: watch tests are far too slow on windows right now
32
39
. filter ( s => ! s . name . endsWith ( 'compat-addon-classic-features-virtual-scripts' ) ) // TODO: these tests are too slow on windows right now
40
+ . filter ( s => ! temporaryWindowsIgnoreTests . includes ( s . name ) ) // TODO: unskip these tests after merging stable into main
33
41
. map ( s => ( {
34
42
name : `${ s . name } windows` ,
35
43
os : 'windows' ,
You can’t perform that action at this time.
0 commit comments