refactor: drop nfnt/resize dependency #2595
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: 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 |