diff --git a/backend/python/migrations/versions/2022-07-03_57f14d8ff8bf_condense_goals_and_concerns_models.py b/backend/python/migrations/versions/2022-07-03_57f14d8ff8bf_condense_goals_and_concerns_models.py index 30ae092b1..d59b39773 100644 --- a/backend/python/migrations/versions/2022-07-03_57f14d8ff8bf_condense_goals_and_concerns_models.py +++ b/backend/python/migrations/versions/2022-07-03_57f14d8ff8bf_condense_goals_and_concerns_models.py @@ -160,7 +160,6 @@ def seed_downgrade_data( long_term_goals, short_term_goals, ): - op.bulk_insert( child_concerns, [ diff --git a/backend/python/requirements.txt b/backend/python/requirements.txt index c0b0f337a..4e52f7f68 100644 --- a/backend/python/requirements.txt +++ b/backend/python/requirements.txt @@ -1,13 +1,13 @@ alembic==1.5.2 appdirs==1.4.4 attrs==21.2.0 -black==20.8b1 +black==23.1.0 CacheControl==0.12.6 cachetools==4.2.1 certifi==2020.12.5 cffi==1.14.5 chardet==4.0.0 -click==7.1.2 +click==8.0.0 coverage==6.4.1 dnspython==1.16.0 firebase-admin==4.5.3 @@ -39,8 +39,8 @@ mongoengine==0.23.0 mongomock==3.23.0 msgpack==1.0.2 mypy-extensions==0.4.3 -packaging==20.9 -pathspec==0.8.1 +packaging==22.0 +pathspec==0.9.0 pluggy==0.13.1 proto-plus==1.18.1 protobuf==3.18.3 @@ -65,7 +65,7 @@ six==1.15.0 SQLAlchemy==1.3.22 toml==0.10.2 typed-ast==1.4.2 -typing-extensions==3.7.4.3 +typing-extensions==3.10.0.0 uritemplate==3.0.1 urllib3==1.26.5 Werkzeug==1.0.1 diff --git a/backend/python/tests/functional/test_access_type_service.py b/backend/python/tests/functional/test_access_type_service.py index 1cf6c992f..cf809f1be 100644 --- a/backend/python/tests/functional/test_access_type_service.py +++ b/backend/python/tests/functional/test_access_type_service.py @@ -22,6 +22,7 @@ def access_type_service(): {"access_type": "VIRTUAL", "is_default": True}, ] + # TODO: remove this step when migrations are configured to run against test db def seed_database(): access_type_instances = [AccessType(**data) for data in DEFAULT_ACCESS_TYPES] diff --git a/backend/python/tests/functional/test_branch_service.py b/backend/python/tests/functional/test_branch_service.py index 27a967255..ac66ce4ae 100644 --- a/backend/python/tests/functional/test_branch_service.py +++ b/backend/python/tests/functional/test_branch_service.py @@ -17,6 +17,7 @@ def branch_service(): DEFAULT_BRANCH = {"branch": "ALGOMA", "is_default": True} + # TODO: remove this step when migrations are configured to run against test db def seed_database(): branch_instance = Branch(**DEFAULT_BRANCH)