بنقرة واحدة
test
Run the test suite. Use when running tests, checking test results, or when the user asks to test code.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Run the test suite. Use when running tests, checking test results, or when the user asks to test code.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Search OLX.pt listings, track prices, and detect deals. Use for finding products, monitoring prices, and getting alerts on good deals in Portugal and other OLX regions.
Create a new filter for the tracker system. Use when adding custom filtering logic or when the user asks to create a filter.
Create a new notification backend (e.g., Telegram, Email, Slack). Use when adding custom notification channels.
Build the olx-tracker project. Use when compiling the project or when the user asks to build.
Create a git commit following project conventions. Use when the user asks to commit changes or create a commit.
Check code quality and formatting. Use when checking code style, running pre-commit checks, or when the user asks to lint or format code.
استنادا إلى تصنيف SOC المهني
| name | test |
| description | Run the test suite. Use when running tests, checking test results, or when the user asks to test code. |
| argument-hint | ["test-name or --coverage"] |
| allowed-tools | Bash(cargo *) |
Execute the test suite for olx-tracker.
# Run all tests
cargo test
# Run specific test
cargo test $ARGUMENTS
# Run tests with output
cargo test -- --nocapture
# Run only lib tests (faster)
cargo test --lib
When $ARGUMENTS contains "--coverage" or "coverage", run coverage report:
# Check if tarpaulin is installed, install if needed
which cargo-tarpaulin || cargo install cargo-tarpaulin
# Run coverage
cargo tarpaulin --out Stdout --engine llvm
Current coverage: ~65% overall, with high coverage in core modules:
All 201 tests should pass (as of Jan 2026).
All tests are properly mocked - NO real OLX API calls are made during testing.