-
Notifications
You must be signed in to change notification settings - Fork 430
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate 4.x branch's testing and type-testing
- Loading branch information
Showing
11 changed files
with
222 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[pytest] | ||
markers = | ||
ddblocal: requires an mock dynamodb server running on localhost:8000 | ||
env = | ||
AWS_ACCESS_KEY_ID=1 | ||
AWS_SECRET_ACCESS_KEY=2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
mock | ||
pytest | ||
pytest>=6 | ||
pytest-env | ||
pytest-mock | ||
|
||
# Due to https://github.com/boto/botocore/issues/1872. Remove after botocore fixes. | ||
python-dateutil==2.8.0 | ||
|
||
# only used in .travis.yml | ||
# only used in CI | ||
coveralls | ||
mypy==0.761;python_version>="3.7" | ||
mypy==0.950;python_version>="3.7" | ||
pytest-cov | ||
sphinx | ||
sphinx-rtd-theme | ||
|
||
# used for type-checking | ||
botocore-stubs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,12 +31,16 @@ def find_stubs(package): | |
setup( | ||
name='pynamodb', | ||
version=__import__('pynamodb').__version__, | ||
packages=find_packages(exclude=('tests', 'tests.integration',)), | ||
packages=find_packages(exclude=('examples', 'tests', 'typing_tests', 'tests.integration',)), | ||
url='http://jlafon.io/pynamodb.html', | ||
project_urls={ | ||
'Source': 'https://github.com/pynamodb/PynamoDB', | ||
}, | ||
author='Jharrod LaFon', | ||
author_email='[email protected]', | ||
description='A Pythonic Interface to DynamoDB', | ||
long_description=open('README.rst').read(), | ||
long_description_content_type='text/x-rst', | ||
zip_safe=False, | ||
license='MIT', | ||
keywords='python dynamodb amazon', | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Oops, something went wrong.