Skip to content

refactor: drop nfnt/resize dependency #2595

refactor: drop nfnt/resize dependency

refactor: drop nfnt/resize dependency #2595

Workflow file for this run

name: Pytest Lint
on:
pull_request:
branches:
- develop
- release/**
push:
branches:
- "test-linting"
jobs:
pytest-lint:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.12'
cache: 'pip'
- name: Set up virtual environment in /tests-functional/
run: |
python -m venv tests-functional/.venv
- name: Install dependencies based on requirements.txt
run: |
source tests-functional/.venv/bin/activate
pip install -r tests-functional/requirements.txt
- name: Run pytest-lint
run: |
source tests-functional/.venv/bin/activate
make pytest-lint