feat: add ResolutionSelector node for aspect ratio and megapixel-base… #748
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: Execution Tests | |
| on: | |
| push: | |
| branches: [ main, master, release/** ] | |
| pull_request: | |
| branches: [ main, master, release/** ] | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.12' | |
| - name: Install requirements | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu | |
| pip install -r requirements.txt | |
| pip install -r tests-unit/requirements.txt | |
| - name: Run Execution Tests | |
| run: | | |
| python -m pytest tests/execution -v --skip-timing-checks |