Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update shared #564

Merged
merged 3 commits into from
Jul 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ FROM us-docker.pkg.dev/berglas/berglas/berglas:$BERGLAS_VERSION as berglas
FROM $REQUIREMENTS_IMAGE as app
COPY . /worker
WORKDIR /worker
RUN pip install setuptools==70.3.0
RUN chmod +x worker.sh
ARG RELEASE_VERSION
ENV RELEASE_VERSION=$RELEASE_VERSION
Expand Down
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
https://github.com/codecov/shared/archive/00d7fceecb37b65516522995a6f627012d4ff953.tar.gz#egg=shared
https://github.com/codecov/shared/archive/2c09a6aa22e9c826c0c3fd70ea3f10e97e1ef954.tar.gz#egg=shared
https://github.com/codecov/opentelem-python/archive/refs/tags/v0.0.4a1.tar.gz#egg=codecovopentelem
https://github.com/codecov/test-results-parser/archive/1507de2241601d678e514c08b38426e48bb6d47d.tar.gz#egg=test-results-parser
boto3>=1.34
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ sentry-sdk==1.40.0
# via
# -r requirements.in
# shared
shared @ https://github.com/codecov/shared/archive/00d7fceecb37b65516522995a6f627012d4ff953.tar.gz
shared @ https://github.com/codecov/shared/archive/2c09a6aa22e9c826c0c3fd70ea3f10e97e1ef954.tar.gz
# via -r requirements.in
six==1.16.0
# via
Expand Down
2 changes: 1 addition & 1 deletion services/tests/unit/test_bots.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ def test_select_repo_bot_info(self, dbsession):
)
assert get_adapter_auth_information(repo.owner, repo) == expected

def test_select_repo_bot_info_public_repo(self, dbsession, mock_configuration):
def test_select_repo_bot_info_public_repoo(self, dbsession, mock_configuration):
repo = self._generate_test_repo(
dbsession, with_owner_bot=True, with_bot=True
)
Expand Down
Loading