MAINT: try fixing a collection error under pytest 8.1.x #317
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: pip | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ['3.10', '3.11'] | |
os: [ubuntu-latest] | |
pytest: ['"pytest<8.0"', pytest] | |
# pip cache paths | |
include: | |
- os: ubuntu-latest | |
path: ~/.cache/pip | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
# use pip caching | |
- uses: actions/cache@v2 | |
with: | |
path: ${{ matrix.path }} | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
# Install dependencies | |
- name: Install | |
run: | | |
python -m pip install numpy scipy matplotlib ${{matrix.pytest}} | |
python -m pip install -e . | |
- name: Self-test | |
run: | | |
pytest --pyargs scpdt -v -s | |
- name: Self-test CLI | |
run: | | |
python -m scpdt scpdt/tests/finder_cases.py -vv | |
- name: Test testfile CLI | |
run: | | |
python -m scpdt ./scpdt/tests/scipy_linalg_tutorial_clone.rst -v | |
- name: Run testmod a scipy submodule | |
run: | | |
python -c'from scipy.linalg import _basic; from scpdt import testmod; testmod(_basic, verbose=True)' | |
- name: Run testmod a scipy submodule -- Public API onlly | |
run: | | |
python -mpip install pooch | |
python -c'from scipy import ndimage; from scpdt import testmod; testmod(ndimage, verbose=True, strategy="api")' | |
- name: Test pytest plugin | |
# This test will fail in a venv where scpdt has not been installed and the plugin has not been activated | |
run: | | |
test_files=("scpdt/tests/module_cases.py" "scpdt/tests/stopwords_cases.py" "scpdt/tests/local_file_cases.py") | |
for file in "${test_files[@]}"; do | |
python -m pytest "${file}" --doctest-modules | |
done |