#!/usr/bin/env python3 """ Simple test runner for AITBC CLI Level 2 commands """ import sys import os # Add CLI to path sys.path.insert(0, '/home/oib/windsurf/aitbc/cli') def main(): """Main test runner""" print("šŸš€ AITBC CLI Level 2 Commands Test Runner") print("Testing essential subcommands for daily operations") print("=" * 50) try: # Import and run the main test from test_level2_commands import main as test_main success = test_main() if success: print("\nšŸŽ‰ All Level 2 tests completed successfully!") sys.exit(0) else: print("\nāŒ Some Level 2 tests failed!") sys.exit(1) except ImportError as e: print(f"āŒ Import error: {e}") print("Make sure you're running from the tests directory") sys.exit(1) except Exception as e: print(f"āŒ Unexpected error: {e}") sys.exit(1) if __name__ == "__main__": main()