Skip to content

Commit 6d929ac

Browse files
increment version 24.6.1 (#599)
Co-authored-by: JerrySentry <[email protected]>
1 parent 86fd9b1 commit 6d929ac

9 files changed

+11
-4
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
24.5.1
1+
24.6.1

codecov_auth/tests/test_migrations.py

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
from datetime import datetime
22

3+
import pytest
4+
35
from utils.test_utils import TestMigrations
46

57

@@ -52,6 +54,9 @@ def setUpBeforeMigration(self, apps):
5254
admins=[3, 2, 1, 2, 3],
5355
)
5456

57+
@pytest.mark.skip(
58+
reason="move to shared"
59+
) # TODO move this test to live with auth models in shared
5560
def test_admins_deduped(self):
5661
owners = self.apps.get_model("codecov_auth", "Owner")
5762

requirements.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ factory-boy
2020
fakeredis
2121
freezegun
2222
https://github.com/codecov/opentelem-python/archive/refs/tags/v0.0.4a1.tar.gz#egg=codecovopentelem
23-
https://github.com/codecov/shared/archive/5951c1e1bb155423257efdbd4e415a2284e06e30.tar.gz#egg=shared
23+
https://github.com/codecov/shared/archive/c71c6ae56ea219d40d9316576716148e836e02c2.tar.gz#egg=shared
2424
google-cloud-pubsub
2525
gunicorn>=22.0.0
2626
https://github.com/photocrowd/django-cursor-pagination/archive/f560902696b0c8509e4d95c10ba0d62700181d84.tar.gz

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ sentry-sdk[celery]==1.44.1
411411
# shared
412412
setproctitle==1.1.10
413413
# via -r requirements.in
414-
shared @ https://github.com/codecov/shared/archive/5951c1e1bb155423257efdbd4e415a2284e06e30.tar.gz
414+
shared @ https://github.com/codecov/shared/archive/c71c6ae56ea219d40d9316576716148e836e02c2.tar.gz
415415
# via -r requirements.in
416416
simplejson==3.17.2
417417
# via -r requirements.in
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.

upload/tests/test_helpers.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,9 @@ def test_try_to_get_best_possible_bot_token_using_invalid_integration(
106106
):
107107
from shared.github import InvalidInstallationError # circular imports
108108

109-
get_github_integration_token.side_effect = InvalidInstallationError()
109+
get_github_integration_token.side_effect = InvalidInstallationError(
110+
error_cause="installation_not_found"
111+
)
110112
bot = OwnerFactory.create(unencrypted_oauth_token="bornana")
111113
bot.save()
112114
owner = OwnerFactory.create(integration_id=12345, bot=bot)

0 commit comments

Comments
 (0)