mirror of
https://github.com/flakestorm/flakestorm.git
synced 2026-07-05 21:02:11 +02:00
Refactor Entropix to FlakeStorm
- Rename all instances of Entropix to FlakeStorm - Rename package from entropix to flakestorm - Update all class names (EntropixConfig -> FlakeStormConfig, EntropixRunner -> FlakeStormRunner) - Update Rust module from entropix_rust to flakestorm_rust - Update README: remove cloud comparison, update links to flakestorm.com - Update .gitignore to allow docs files referenced in README - Add origin remote for VS Code compatibility - Fix missing imports and type references - All imports and references updated throughout codebase
This commit is contained in:
parent
7b75fc9530
commit
61652be09b
48 changed files with 586 additions and 425 deletions
|
|
@ -2,15 +2,15 @@
|
|||
Tests for the assertion/invariant system.
|
||||
"""
|
||||
|
||||
from entropix.assertions.deterministic import (
|
||||
from flakestorm.assertions.deterministic import (
|
||||
ContainsChecker,
|
||||
LatencyChecker,
|
||||
RegexChecker,
|
||||
ValidJsonChecker,
|
||||
)
|
||||
from entropix.assertions.safety import ExcludesPIIChecker, RefusalChecker
|
||||
from entropix.assertions.verifier import InvariantVerifier
|
||||
from entropix.core.config import InvariantConfig, InvariantType
|
||||
from flakestorm.assertions.safety import ExcludesPIIChecker, RefusalChecker
|
||||
from flakestorm.assertions.verifier import InvariantVerifier
|
||||
from flakestorm.core.config import InvariantConfig, InvariantType
|
||||
|
||||
|
||||
class TestContainsChecker:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue