particle-os-tools/run_integration_tests.sh
Joe Particle 4f00e140a3
Some checks failed
Compile apt-layer (v2) / compile (push) Failing after 3h13m50s
feat: add changelog, docs, and update various scripts for modular CLI milestone
2025-07-17 09:22:29 +00:00

27 lines
No EOL
749 B
Bash

#!/bin/bash
# Integration Test Runner
# This script runs comprehensive integration tests for apt-ostree.py and apt-layer.sh
set -e
echo "=== apt-ostree Integration Test Runner ==="
echo "Starting comprehensive integration tests..."
echo
# Check if we're in the right directory
if [ ! -f "src/apt-ostree.py/integration_test.py" ]; then
echo "❌ Error: integration_test.py not found. Please run from project root."
exit 1
fi
# Make sure the test script is executable
chmod +x src/apt-ostree.py/integration_test.py
# Run the integration tests
echo "Running integration tests..."
python3 src/apt-ostree.py/integration_test.py
echo
echo "=== Integration Test Complete ==="
echo "Check integration_test_results.json for detailed results."