Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -652,6 +652,7 @@ test('pipenv py3.6 can package flask with default options', t => {
const zipfiles = listZipFiles('.serverless/sls-py-req-test.zip');
t.true(zipfiles.includes(`flask${sep}__init__.py`), 'flask is packaged');
t.true(zipfiles.includes(`boto3${sep}__init__.py`), 'boto3 is packaged');
t.false(zipfiles.includes(`pytest${sep}__init__.py`), 'dev-package pytest is NOT packaged');
t.end();
});

Expand Down
3 changes: 3 additions & 0 deletions tests/pipenv/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ verify_ssl = true
Flask = "*"
bottle = "*"
boto3 = "*"

[dev-packages]
pytest = "*"
133 changes: 111 additions & 22 deletions tests/pipenv/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.