Skip to content

Commit ea75cc6

Browse files
authored
chore(ci): unquarantine media download test (#1039)
1 parent 1cab3d2 commit ea75cc6

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
rm -rf .env
9191
9292
echo "::group::Run server"
93-
TELEMETRY_ENABLED=false LANGFUSE_S3_EVENT_UPLOAD_ENDPOINT=http://localhost:9090 LANGFUSE_SDK_CI_SYNC_PROCESSING_ENABLED=true LANGFUSE_READ_FROM_POSTGRES_ONLY=true LANGFUSE_READ_FROM_CLICKHOUSE_ONLY=false LANGFUSE_RETURN_FROM_CLICKHOUSE=false docker compose up -d
93+
TELEMETRY_ENABLED=false LANGFUSE_S3_MEDIA_UPLOAD_ENDPOINT=http://localhost:9090 LANGFUSE_SDK_CI_SYNC_PROCESSING_ENABLED=true LANGFUSE_READ_FROM_POSTGRES_ONLY=true LANGFUSE_READ_FROM_CLICKHOUSE_ONLY=false LANGFUSE_RETURN_FROM_CLICKHOUSE=false docker compose up -d
9494
echo "::endgroup::"
9595
9696
# Add this step to check the health of the container

tests/test_media.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,7 @@ def test_nonexistent_file():
110110
assert media._content_type is None
111111

112112

113-
@pytest.mark.skip(reason="Docker networking issues. Enable once LFE-3159 is fixed.")
114-
def test_replace_media_reference_string_in_object(tmp_path):
113+
def test_replace_media_reference_string_in_object():
115114
# Create test audio file
116115
audio_file = "static/joke_prompt.wav"
117116
with open(audio_file, "rb") as f:

0 commit comments

Comments
 (0)