File tree 1 file changed +20
-16
lines changed
1 file changed +20
-16
lines changed Original file line number Diff line number Diff line change @@ -1371,22 +1371,26 @@ test(
1371
1371
{ skip : ! canUseDocker ( ) }
1372
1372
) ;
1373
1373
1374
- test ( 'py3.6 uses download cache with dockerizePip + cacheLocation option' , t => {
1375
- process . chdir ( 'tests/base' ) ;
1376
- const path = npm ( [ 'pack' , '../..' ] ) ;
1377
- npm ( [ 'i' , path ] ) ;
1378
- sls ( [
1379
- '--useDownloadCache=true' ,
1380
- '--dockerizePip=true' ,
1381
- '--cacheLocation=.requirements-cache' ,
1382
- 'package'
1383
- ] ) ;
1384
- t . true (
1385
- pathExistsSync ( `.requirements-cache${ sep } downloadCacheslspyc${ sep } http` ) ,
1386
- 'cache directoy exists'
1387
- ) ;
1388
- t . end ( ) ;
1389
- } ) ;
1374
+ test (
1375
+ 'py3.6 uses download cache with dockerizePip + cacheLocation option' ,
1376
+ t => {
1377
+ process . chdir ( 'tests/base' ) ;
1378
+ const path = npm ( [ 'pack' , '../..' ] ) ;
1379
+ npm ( [ 'i' , path ] ) ;
1380
+ sls ( [
1381
+ '--useDownloadCache=true' ,
1382
+ '--dockerizePip=true' ,
1383
+ '--cacheLocation=.requirements-cache' ,
1384
+ 'package'
1385
+ ] ) ;
1386
+ t . true (
1387
+ pathExistsSync ( `.requirements-cache${ sep } downloadCacheslspyc${ sep } http` ) ,
1388
+ 'cache directoy exists'
1389
+ ) ;
1390
+ t . end ( ) ;
1391
+ } ,
1392
+ { skip : ! canUseDocker ( ) }
1393
+ ) ;
1390
1394
1391
1395
test ( 'py3.6 uses static and download cache' , t => {
1392
1396
process . chdir ( 'tests/base' ) ;
You can’t perform that action at this time.
0 commit comments