File tree 1 file changed +0
-15
lines changed
1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,6 @@ const sls = mkCommand('sls');
52
52
const git = mkCommand ( 'git' ) ;
53
53
const npm = mkCommand ( 'npm' ) ;
54
54
const perl = mkCommand ( 'perl' ) ;
55
- const poetry = mkCommand ( 'poetry' ) ;
56
55
57
56
const setup = ( ) => {
58
57
removeSync ( getUserCachePath ( ) ) ;
@@ -1910,17 +1909,3 @@ test(
1910
1909
} ,
1911
1910
{ skip : ! canUseDocker ( ) }
1912
1911
) ;
1913
-
1914
- // From this point on, the version of the poetry is 1.0.0a0
1915
- test ( 'poetry1.0.0a0 py3.6 can package flask with default options' , t => {
1916
- process . chdir ( 'tests/poetry' ) ;
1917
- const path = npm ( [ 'pack' , '../..' ] ) ;
1918
- npm ( [ 'i' , path ] ) ;
1919
- poetry ( [ 'self' , 'update' , '--preview' , '1.0.0a0' ] ) ;
1920
- sls ( [ 'package' ] ) ;
1921
- const zipfiles = listZipFiles ( '.serverless/sls-py-req-test.zip' ) ;
1922
- t . true ( zipfiles . includes ( `flask${ sep } __init__.py` ) , 'flask is packaged' ) ;
1923
- t . true ( zipfiles . includes ( `bottle.py` ) , 'bottle is packaged' ) ;
1924
- t . true ( zipfiles . includes ( `boto3${ sep } __init__.py` ) , 'boto3 is packaged' ) ;
1925
- t . end ( ) ;
1926
- } ) ;
You can’t perform that action at this time.
0 commit comments