Skip to content

Commit ca8dd31

Browse files
committed
Remove circle config. Skip DockerizePip tests on windows.
1 parent ce9c375 commit ca8dd31

File tree

2 files changed

+13
-60
lines changed

2 files changed

+13
-60
lines changed

.circleci/config.yml

Lines changed: 0 additions & 47 deletions
This file was deleted.

test.js

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ test(
392392
t.true(zipfiles.includes(`boto3${sep}__init__.py`), 'boto3 is packaged');
393393
t.end();
394394
},
395-
{ skip: !canUseDocker() || !hasPython(3.6) }
395+
{ skip: !canUseDocker() || !hasPython(3.6) || brokenOn('win32') }
396396
);
397397

398398
test(
@@ -415,7 +415,7 @@ test(
415415
);
416416
t.end();
417417
},
418-
{ skip: !canUseDocker() || !hasPython(3.6) }
418+
{ skip: !canUseDocker() || !hasPython(3.6) || brokenOn('win32') }
419419
);
420420

421421
test(
@@ -440,7 +440,7 @@ test(
440440
);
441441
t.end();
442442
},
443-
{ skip: !canUseDocker() || !hasPython(3.6) }
443+
{ skip: !canUseDocker() || !hasPython(3.6) || brokenOn('win32') }
444444
);
445445

446446
test(
@@ -473,7 +473,7 @@ test(
473473
);
474474
t.end();
475475
},
476-
{ skip: !canUseDocker() || !hasPython(3.6) }
476+
{ skip: !canUseDocker() || !hasPython(3.6) || brokenOn('win32') }
477477
);
478478

479479
test(
@@ -506,7 +506,7 @@ test(
506506
);
507507
t.end();
508508
},
509-
{ skip: !canUseDocker() || !hasPython(3.6) }
509+
{ skip: !canUseDocker() || !hasPython(3.6) || brokenOn('win32') }
510510
);
511511

512512
test(
@@ -1177,7 +1177,7 @@ test(
11771177
t.true(zipfiles.includes(`boto3${sep}__init__.py`), 'boto3 is packaged');
11781178
t.end();
11791179
},
1180-
{ skip: !canUseDocker() || !hasPython(3.6) }
1180+
{ skip: !canUseDocker() || !hasPython(3.6) || brokenOn('win32') }
11811181
);
11821182

11831183
test(
@@ -1301,7 +1301,7 @@ test(
13011301
);
13021302
t.end();
13031303
},
1304-
{ skip: !canUseDocker() || !hasPython(3.6) }
1304+
{ skip: !canUseDocker() || !hasPython(3.6) || brokenOn('win32') }
13051305
);
13061306

13071307
test(
@@ -1989,7 +1989,7 @@ test(
19891989
);
19901990

19911991
test(
1992-
'py3.6 uses download cache by defaul option',
1992+
'py3.6 uses download cache by default',
19931993
async t => {
19941994
process.chdir('tests/base');
19951995
const path = npm(['pack', '../..']);
@@ -2018,7 +2018,7 @@ test(
20182018
);
20192019
t.end();
20202020
},
2021-
{ skip: !canUseDocker() || !hasPython(3.6) }
2021+
{ skip: !canUseDocker() || !hasPython(3.6) || brokenOn('win32') }
20222022
);
20232023

20242024
test(
@@ -2038,7 +2038,7 @@ test(
20382038
);
20392039
t.end();
20402040
},
2041-
{ skip: !canUseDocker() || !hasPython(3.6) }
2041+
{ skip: !canUseDocker() || !hasPython(3.6) || brokenOn('win32') }
20422042
);
20432043

20442044
test(
@@ -2082,7 +2082,7 @@ test(
20822082
);
20832083
t.end();
20842084
},
2085-
{ skip: !canUseDocker() || !hasPython(3.6) }
2085+
{ skip: !canUseDocker() || !hasPython(3.6) || brokenOn('win32') }
20862086
);
20872087

20882088
test(
@@ -2187,7 +2187,7 @@ test(
21872187

21882188
t.end();
21892189
},
2190-
{ skip: !canUseDocker() || !hasPython(3.6) }
2190+
{ skip: !canUseDocker() || !hasPython(3.6) || brokenOn('win32') }
21912191
);
21922192

21932193
test(
@@ -2213,5 +2213,5 @@ test(
22132213

22142214
t.end();
22152215
},
2216-
{ skip: !canUseDocker() || !hasPython(3.6) }
2216+
{ skip: !canUseDocker() || !hasPython(3.6) || brokenOn('win32') }
22172217
);

0 commit comments

Comments
 (0)