Skip to content

Commit

Permalink
increment version 24.6.1 (#599)
Browse files Browse the repository at this point in the history
Co-authored-by: JerrySentry <[email protected]>
  • Loading branch information
nora-codecov and JerrySentry authored Jun 5, 2024
1 parent 86fd9b1 commit 6d929ac
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.5.1
24.6.1
5 changes: 5 additions & 0 deletions codecov_auth/tests/test_migrations.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from datetime import datetime

import pytest

from utils.test_utils import TestMigrations


Expand Down Expand Up @@ -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")

Expand Down
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Binary file modified services/tests/samples/base_bundle_report.sqlite
Binary file not shown.
Binary file modified services/tests/samples/bundle_report.sqlite
Binary file not shown.
Binary file modified services/tests/samples/bundle_with_assets_and_modules.sqlite
Binary file not shown.
Binary file modified services/tests/samples/head_bundle_report.sqlite
Binary file not shown.
4 changes: 3 additions & 1 deletion upload/tests/test_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 6d929ac

Please sign in to comment.