build(deps): bump pytest from 8.3.5 to 9.0.3 in /tests #963
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 🧪 Test Validation | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| validate-tests: | |
| name: Validate test scripts | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 | |
| - name: Set up Python | |
| uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: pip install -r tests/requirements.txt | |
| - name: Validate Controller test collection | |
| env: | |
| DEVICE_IP: "192.0.2.1" | |
| run: pytest tests/controller/ --collect-only | |
| - name: Validate HW-Reg test collection | |
| env: | |
| DEVICE_IP: "192.0.2.1" | |
| run: pytest tests/hw-reg/ --collect-only |