Skip to content

Commit

Permalink
chore(ci): unquarantine media download test (#1039)
Browse files Browse the repository at this point in the history
  • Loading branch information
hassiebp authored Dec 12, 2024
1 parent 1cab3d2 commit ea75cc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
rm -rf .env
echo "::group::Run server"
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
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
echo "::endgroup::"
# Add this step to check the health of the container
Expand Down
3 changes: 1 addition & 2 deletions tests/test_media.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,7 @@ def test_nonexistent_file():
assert media._content_type is None


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

0 comments on commit ea75cc6

Please sign in to comment.