Skip to content

Latest commit

 

History

History

README.md

Developer & Maintainer Area

Status: Informational
Scope: .dev/ directory
Last Updated: {{ git_revision_date_localized }}
Created: {{ git_creation_date_localized }}

⚠️ Note: This folder is for project maintainers only, containing unit tests, development documentation, and maintenance tools.
For general users, please refer to the root README.md


📁 Quick Overview

This directory contains:

  • Component Tests (.dev/tests/) - Runner module functionality tests (~273 tests)
  • Solution Correctness Tests (.dev/tests_solutions/) - Solution execution tests (~99 tests)
  • Test Scripts - Helper scripts to run tests (.bat for Windows, .sh for Linux/Mac)

🚀 Quick Start

Run All Tests

# Windows
.dev\run_all_tests.bat

# Linux/Mac
.dev/run_all_tests.sh

Run Tests Separately

# Component tests
python -m pytest .dev/tests -v

# Solution tests
python -m pytest .dev/tests_solutions -v

📚 Full Documentation

For complete documentation, please see:


Note: This folder's contents are for maintainers only; general users need not be concerned.