Skip to content

Domain Release Changes#28

Merged
sridharswain merged 5 commits intomainfrom
domain-release-changes
Mar 19, 2026
Merged

Domain Release Changes#28
sridharswain merged 5 commits intomainfrom
domain-release-changes

Conversation

@sridharswain
Copy link
Collaborator

Checklist

Please review this repository's contribution guidelines.

  • I've read and agree to the project's contribution guidelines.
  • I'm requesting to pull a topic/feature/bugfix branch.
  • I checked that my code additions pass linting (black, isort, mypy) and unit tests.
  • I updated tests (if applicable).
  • I updated documentation (if applicable).

Description

What does this change do and why?

Related Issue

Closes #

Test Plan

How was this tested?

def test_delete_existing(self):
cache = MemoryCache(max_size=10)
cache.set("k1", "v1")
assert cache.delete("k1") is True

def test_delete_missing(self):
cache = MemoryCache(max_size=10)
assert cache.delete("nonexistent") is False
import pytest
from pydantic import BaseModel

import fasteval.cache.memory as cache_module

import pytest

import fasteval.collectors.collector as collector_module
from pydantic import BaseModel

# Import the public decorator functions
import fasteval.core.decorators as dec

import pytest

import fasteval.providers.registry as registry_module
@@ -0,0 +1,171 @@
"""Tests for fasteval.cache.memory."""

import pytest
Comment on lines +13 to +17
from fasteval.collectors.summary import (
EvalRunSummary,
MetricAggregate,
TestCaseSummary,
)

import pytest

import fasteval_langfuse.config as config_module
import os
from unittest.mock import patch

import pytest
@sridharswain sridharswain added the release:langfuse:patch patch release of langfuse plugin label Mar 19, 2026
@sridharswain sridharswain merged commit 380ec84 into main Mar 19, 2026
9 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

release:langfuse:patch patch release of langfuse plugin

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant