This repository was archived by the owner on Oct 22, 2024. It is now read-only.
File tree 2 files changed +20
-3
lines changed
2 files changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -35,9 +35,11 @@ function pyprojectTomlToRequirements() {
35
35
36
36
const editableFlag = new RegExp ( / ^ - e / gm) ;
37
37
const sourceRequirements = path . join ( this . servicePath , 'requirements.txt' ) ;
38
- const requirementsContents = fse . readFileSync ( sourceRequirements , {
39
- encoding : 'utf-8'
40
- } ) ;
38
+ const requirementsContents =
39
+ res . stdout . toString ( ) . trim ( ) || // As of poetry 1.0.0b1, requirements.txt is printed to standard output when the -o option is not specified.
40
+ fse . readFileSync ( sourceRequirements , {
41
+ encoding : 'utf-8'
42
+ } ) ;
41
43
42
44
if ( requirementsContents . match ( editableFlag ) ) {
43
45
this . serverless . cli . log (
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ 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' ) ;
55
56
56
57
const setup = ( ) => {
57
58
removeSync ( getUserCachePath ( ) ) ;
@@ -1886,3 +1887,17 @@ test(
1886
1887
} ,
1887
1888
{ skip : ! canUseDocker ( ) }
1888
1889
) ;
1890
+
1891
+ // From this point on, the version of the poetry is 1.0.0a0
1892
+ test ( 'poetry1.0.0a0 py3.6 can package flask with default options' , t => {
1893
+ process . chdir ( 'tests/poetry' ) ;
1894
+ const path = npm ( [ 'pack' , '../..' ] ) ;
1895
+ npm ( [ 'i' , path ] ) ;
1896
+ poetry ( [ 'self' , 'update' , '--preview' , '1.0.0a0' ] ) ;
1897
+ sls ( [ 'package' ] ) ;
1898
+ const zipfiles = listZipFiles ( '.serverless/sls-py-req-test.zip' ) ;
1899
+ t . true ( zipfiles . includes ( `flask${ sep } __init__.py` ) , 'flask is packaged' ) ;
1900
+ t . true ( zipfiles . includes ( `bottle.py` ) , 'bottle is packaged' ) ;
1901
+ t . true ( zipfiles . includes ( `boto3${ sep } __init__.py` ) , 'boto3 is packaged' ) ;
1902
+ t . end ( ) ;
1903
+ } ) ;
You can’t perform that action at this time.
0 commit comments