Refactor documentation and remove CI/CD integration references

- Updated README.md to clarify local testing instructions and added error handling for low scores.
- Removed CI/CD configuration details from CONFIGURATION_GUIDE.md and other documentation files.
- Cleaned up MODULES.md by deleting references to the now-removed github_actions.py.
- Streamlined TEST_SCENARIOS.md and USAGE_GUIDE.md by eliminating CI/CD related sections.
- Adjusted CLI command help text in main.py for clarity on minimum score checks.
This commit is contained in:
Entropix 2025-12-30 16:03:42 +08:00
parent 8d752e9746
commit 0c986e268a
7 changed files with 13 additions and 282 deletions

View file

@ -436,38 +436,6 @@ advanced:
---
## CI/CD Configuration
For GitHub Actions:
```yaml
# .github/workflows/reliability.yml
name: Agent Reliability
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Ollama
run: |
curl -fsSL https://ollama.ai/install.sh | sh
ollama serve &
sleep 5
ollama pull qwen3:8b
- name: Install flakestorm
run: pip install flakestorm
- name: Run Tests
run: flakestorm run --min-score 0.9 --ci
```
---
## Troubleshooting
### Common Issues