Files
semantica/scripts/run-tests.sh
T
KaifAhmad1 03b84ab238 docs: Add comprehensive open source project improvements
- Add essential open source files (CONTRIBUTING.md, CODE_OF_CONDUCT.md, SECURITY.md, CHANGELOG.md, CONTRIBUTORS.md)
- Add GitHub issue and PR templates
- Add CI/CD workflows (CI, docs, release, dependabot)
- Add pre-commit hooks configuration
- Add documentation enhancements (architecture, governance, contributing, community)
- Add developer experience scripts (setup-dev, run-tests, format-code, check-code)
- Add community features (SUPPORT.md, .all-contributorsrc)
- Enhance README badges and project metadata
- Update mkdocs.yml navigation structure
2025-11-24 13:30:49 +05:30

21 lines
428 B
Bash

#!/bin/bash
# Test runner script for Semantica
set -e
echo "🧪 Running Semantica tests..."
# Activate virtual environment if it exists
if [ -d "venv" ]; then
source venv/bin/activate
fi
# Run tests with coverage
echo "Running pytest with coverage..."
pytest --cov=semantica --cov-report=html --cov-report=term-missing -v
echo ""
echo "✅ Tests complete!"
echo "📊 Coverage report generated in htmlcov/index.html"