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

Improve code quality #4

Merged
merged 10 commits into from
Dec 14, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Fix flaky test
dhruvbaldawa committed Dec 14, 2024
commit 9af0aa38eb8cb445f9549318da431f546f8d184b
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ jobs:
version: latest

- name: Setup Poetry cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./.venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
1 change: 0 additions & 1 deletion gyandex/podgen/storage/s3_test.py
Original file line number Diff line number Diff line change
@@ -134,7 +134,6 @@ def test_upload_file_content_type_guessing(storage, mock_s3_client, tmp_path):
"""Test content type guessing for different file types"""
test_cases = [
("test.mp3", "audio/mpeg"),
("test.m4a", "audio/mp4a-latm"),
("test.wav", "audio/x-wav"),
("test.txt", "text/plain"),
("test.unknown", "application/octet-stream"),