We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a865eb commit ecef22bCopy full SHA for ecef22b
test.js
@@ -1910,17 +1910,3 @@ test(
1910
},
1911
{ skip: !canUseDocker() }
1912
);
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
-});
0 commit comments