diff --git a/VERSION b/VERSION index ca93f22b9e..cbbcf2d0e7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -24.5.1 \ No newline at end of file +24.6.1 \ No newline at end of file diff --git a/codecov_auth/tests/test_migrations.py b/codecov_auth/tests/test_migrations.py index 08a4297bf6..d5ddba1b14 100644 --- a/codecov_auth/tests/test_migrations.py +++ b/codecov_auth/tests/test_migrations.py @@ -1,5 +1,7 @@ from datetime import datetime +import pytest + from utils.test_utils import TestMigrations @@ -52,6 +54,9 @@ def setUpBeforeMigration(self, apps): admins=[3, 2, 1, 2, 3], ) + @pytest.mark.skip( + reason="move to shared" + ) # TODO move this test to live with auth models in shared def test_admins_deduped(self): owners = self.apps.get_model("codecov_auth", "Owner") diff --git a/requirements.in b/requirements.in index fdd21e56b8..9a9923db9e 100644 --- a/requirements.in +++ b/requirements.in @@ -20,7 +20,7 @@ factory-boy fakeredis freezegun https://github.com/codecov/opentelem-python/archive/refs/tags/v0.0.4a1.tar.gz#egg=codecovopentelem -https://github.com/codecov/shared/archive/5951c1e1bb155423257efdbd4e415a2284e06e30.tar.gz#egg=shared +https://github.com/codecov/shared/archive/c71c6ae56ea219d40d9316576716148e836e02c2.tar.gz#egg=shared google-cloud-pubsub gunicorn>=22.0.0 https://github.com/photocrowd/django-cursor-pagination/archive/f560902696b0c8509e4d95c10ba0d62700181d84.tar.gz diff --git a/requirements.txt b/requirements.txt index 61e5bcf67a..05b7f12a63 100644 --- a/requirements.txt +++ b/requirements.txt @@ -411,7 +411,7 @@ sentry-sdk[celery]==1.44.1 # shared setproctitle==1.1.10 # via -r requirements.in -shared @ https://github.com/codecov/shared/archive/5951c1e1bb155423257efdbd4e415a2284e06e30.tar.gz +shared @ https://github.com/codecov/shared/archive/c71c6ae56ea219d40d9316576716148e836e02c2.tar.gz # via -r requirements.in simplejson==3.17.2 # via -r requirements.in diff --git a/services/tests/samples/base_bundle_report.sqlite b/services/tests/samples/base_bundle_report.sqlite index cff6bb02be..75ceaa0c3f 100644 Binary files a/services/tests/samples/base_bundle_report.sqlite and b/services/tests/samples/base_bundle_report.sqlite differ diff --git a/services/tests/samples/bundle_report.sqlite b/services/tests/samples/bundle_report.sqlite index 91a66f741e..59910f61cb 100644 Binary files a/services/tests/samples/bundle_report.sqlite and b/services/tests/samples/bundle_report.sqlite differ diff --git a/services/tests/samples/bundle_with_assets_and_modules.sqlite b/services/tests/samples/bundle_with_assets_and_modules.sqlite index 1d0ffaa8b0..f7e1467ac4 100644 Binary files a/services/tests/samples/bundle_with_assets_and_modules.sqlite and b/services/tests/samples/bundle_with_assets_and_modules.sqlite differ diff --git a/services/tests/samples/head_bundle_report.sqlite b/services/tests/samples/head_bundle_report.sqlite index 9dbcb23593..a56a92bbf3 100644 Binary files a/services/tests/samples/head_bundle_report.sqlite and b/services/tests/samples/head_bundle_report.sqlite differ diff --git a/upload/tests/test_helpers.py b/upload/tests/test_helpers.py index 84fe43ba2f..06cc602417 100644 --- a/upload/tests/test_helpers.py +++ b/upload/tests/test_helpers.py @@ -106,7 +106,9 @@ def test_try_to_get_best_possible_bot_token_using_invalid_integration( ): from shared.github import InvalidInstallationError # circular imports - get_github_integration_token.side_effect = InvalidInstallationError() + get_github_integration_token.side_effect = InvalidInstallationError( + error_cause="installation_not_found" + ) bot = OwnerFactory.create(unencrypted_oauth_token="bornana") bot.save() owner = OwnerFactory.create(integration_id=12345, bot=bot)