Ejecuta cualquier Skill en Manus
con un clic
con un clic
Ejecuta cualquier Skill en Manus con un clic
Comenzar$pwd:
$ git log --oneline --stat
stars:1087
forks:300
updated:29 de mayo de 2026, 00:06
SKILL.md
DART CI: GitHub Actions, cache debugging, and platform-specific failures
DART CI: GitHub Actions, cache debugging, and platform-specific failures
DART Test: unit tests, integration tests, CI validation, and debugging
DART References: manage the experimental simulation research catalog (papers, textbooks, engines) with status, priority, and verdict
DART References: manage the experimental simulation research catalog (papers, textbooks, engines) with status, priority, and verdict
DART Contribute: branching, PRs, review workflow, and dual-PR bugfixes
| name | dart-test |
| description | DART Test: unit tests, integration tests, CI validation, and debugging |
Load this skill when writing or debugging tests.
pixi run test # Quick test run
pixi run test-all # Full validation
pixi run test-unit # Unit tests
pixi run test-py # Python tests
For complete testing guide: docs/onboarding/testing.md
For CI/CD troubleshooting: docs/onboarding/ci-cd.md
tests/unit/tests/integration/TEST(ClassName, MethodName_Condition_ExpectedResult)Before submitting PR:
pixi run lint # Must pass
pixi run test-all # Must pass
# Run the smallest existing Pixi test task that covers the failure
pixi run test-unit
# Get CI logs
gh run view <RUN_ID> --log-failed
pixi run build builds libraries only, NOT the unit-test binaries. If you run
ctest without building the test target first, you may execute stale binaries
that silently pass. Build the test target before running its label, e.g. for
the experimental simulation suite:
pixi run build-simulation-experimental-tests (target dart_experimental_tests)
before ctest -L simulation-experimental.