mirror of
https://github.com/GSA/notifications-api.git
synced 2026-08-25 00:33:41 -04:00
Bump requirements.
Minor weekly updated and a bump for a security alert in urllib3. Sort list in test, to ensure it passes everytime.
This commit is contained in:
@@ -14,11 +14,11 @@ eventlet==0.24.1
|
|||||||
gunicorn==19.7.1 # pyup: ignore, >19.8 breaks eventlet patching
|
gunicorn==19.7.1 # pyup: ignore, >19.8 breaks eventlet patching
|
||||||
iso8601==0.1.12
|
iso8601==0.1.12
|
||||||
jsonschema==3.0.1
|
jsonschema==3.0.1
|
||||||
marshmallow-sqlalchemy==0.16.1
|
marshmallow-sqlalchemy==0.16.2
|
||||||
marshmallow==2.19.2
|
marshmallow==2.19.2
|
||||||
psycopg2-binary==2.8.1
|
psycopg2-binary==2.8.2
|
||||||
PyJWT==1.7.1
|
PyJWT==1.7.1
|
||||||
SQLAlchemy==1.3.2
|
SQLAlchemy==1.3.3
|
||||||
|
|
||||||
notifications-python-client==5.3.0
|
notifications-python-client==5.3.0
|
||||||
|
|
||||||
|
|||||||
@@ -16,11 +16,11 @@ eventlet==0.24.1
|
|||||||
gunicorn==19.7.1 # pyup: ignore, >19.8 breaks eventlet patching
|
gunicorn==19.7.1 # pyup: ignore, >19.8 breaks eventlet patching
|
||||||
iso8601==0.1.12
|
iso8601==0.1.12
|
||||||
jsonschema==3.0.1
|
jsonschema==3.0.1
|
||||||
marshmallow-sqlalchemy==0.16.1
|
marshmallow-sqlalchemy==0.16.2
|
||||||
marshmallow==2.19.2
|
marshmallow==2.19.2
|
||||||
psycopg2-binary==2.8.1
|
psycopg2-binary==2.8.2
|
||||||
PyJWT==1.7.1
|
PyJWT==1.7.1
|
||||||
SQLAlchemy==1.3.2
|
SQLAlchemy==1.3.3
|
||||||
|
|
||||||
notifications-python-client==5.3.0
|
notifications-python-client==5.3.0
|
||||||
|
|
||||||
@@ -31,7 +31,7 @@ awscli-cwlogs>=1.4,<1.5
|
|||||||
# Putting upgrade on hold due to v1.0.0 using sha512 instead of sha1 by default
|
# Putting upgrade on hold due to v1.0.0 using sha512 instead of sha1 by default
|
||||||
itsdangerous==0.24 # pyup: <1.0.0
|
itsdangerous==0.24 # pyup: <1.0.0
|
||||||
|
|
||||||
git+https://github.com/alphagov/notifications-utils.git@31.2.5#egg=notifications-utils==31.2.5
|
git+https://github.com/alphagov/notifications-utils.git@31.2.2#egg=notifications-utils==31.2.2
|
||||||
|
|
||||||
git+https://github.com/alphagov/boto.git@2.43.0-patch3#egg=boto==2.43.0-patch3
|
git+https://github.com/alphagov/boto.git@2.43.0-patch3#egg=boto==2.43.0-patch3
|
||||||
|
|
||||||
|
|||||||
@@ -102,7 +102,7 @@ def test_create_template_folder_sets_user_permissions(admin_request, sample_serv
|
|||||||
if has_parent:
|
if has_parent:
|
||||||
assert resp['data']['users_with_permission'] == [str(user_1.id)]
|
assert resp['data']['users_with_permission'] == [str(user_1.id)]
|
||||||
else:
|
else:
|
||||||
assert resp['data']['users_with_permission'] == [str(user_1.id), str(user_2.id)]
|
assert sorted(resp['data']['users_with_permission']) == sorted([str(user_1.id), str(user_2.id)])
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize('missing_field', ['name', 'parent_id'])
|
@pytest.mark.parametrize('missing_field', ['name', 'parent_id'])
|
||||||
|
|||||||
Reference in New Issue
Block a user