[Fix] Adjust Resize logic - closer to PyTorch (#76) #266
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: tests | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
schedule: | |
# Runs every 2 weeks on Monday at 03:00 UTC | |
- cron: '0 3 * * 1' | |
jobs: | |
pytest-common: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python: ["3.10", "3.11", "3.12"] | |
backend: ["cpu-headless", "openvino-headless"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
architecture: x64 | |
- name: Cache python modules | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pkg-deps-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }}-tests | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[${{ matrix.backend }},viz,html,testing] --upgrade | |
- name: Run unittests | |
run: | | |
coverage run -m pytest tests/common/ -rs --memray | |
coverage xml -o coverage-common-${{ matrix.backend }}-${{ matrix.python }}.xml | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: coverage-common-${{ matrix.backend }}-${{ matrix.python }} | |
path: ./coverage-common-${{ matrix.backend }}-${{ matrix.python }}.xml | |
if-no-files-found: error | |
codecov-upload: | |
runs-on: ubuntu-latest | |
needs: [ pytest-common ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
flags: unittests | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} |