chore(deps): bump scipy from 1.10.1 to 1.12.0 #103
Workflow file for this run
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
# Copyright 2023 Jan-Hendrik Ewers | |
# SPDX-License-Identifier: GPL-3.0-only | |
name: CI (testmon) | |
on: | |
push: | |
branches: [ master, dev, dev-testmon-job, dev-testmon-2 ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
run-tests-testmon: | |
name: Run tests (with testmon) | |
runs-on: ${{ matrix.platform }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
matrix: | |
platform: [ "ubuntu-latest" ] | |
python-version: [ "3.11" ] | |
pytest-args: | |
- "" | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
cache: "pip" | |
python-version: ${{ matrix.python-version }} | |
cache-dependency-path: | | |
**/requirements*.txt | |
- uses: syphar/restore-virtualenv@v1 | |
if: ${{ !github.event.act }} | |
id: cache-virtualenv | |
- name: Install dependencies | |
if: ${{ (!github.event.act) || (steps.cache-virtualenv.outputs.cache-hit != 'true') }} | |
run: | | |
pip install . -r requirements.txt -r tests/requirements.txt | |
pip install git+https://github.com/tarpas/pytest-testmon@main | |
- name: Run tests | |
env: | |
TMNET_API_KEY: ${{ secrets.TMNET_API_KEY }} | |
run: | | |
PYTHONPATH=tests \ | |
pytest tests --tmnet --testmon-noselect --with-integration --with-slow-integration\ | |
${{ matrix.pytest-args }} |