Bump pillow from 10.2.0 to 10.3.0 in /tests #60
This file contains 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: ScirisWeb CI workflow | |
on: [pull_request] | |
jobs: | |
install_and_test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
max-parallel: 8 | |
matrix: | |
python-version: ['3.11'] | |
name: Run tests | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- uses: actions/setup-python@master | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: Install ScirisWeb | |
run: pip install -e . | |
- name: Install tests | |
working-directory: ./tests | |
run: pip install -r requirements_test.txt | |
- name: Run integration tests | |
working-directory: ./tests | |
run: pytest -v test_*.py -n auto --durations=0 |