Merge pull request #151 from ev-br/nan_equal #338
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] | |
steps: | |
# actions/setup-python@v5 has built-in functionality for caching and restoring dependencies. | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' # caching pip dependencies | |
# Install numpy and pytest | |
- name: Install core dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install ${{matrix.pytest}} | |
python -m pip install -e . | |
# Run self-tests without Scipy and MPL | |
# Tests that require Scipy and MPL will be skipped | |
- name: Self-test without SciPy and MPL | |
run: | | |
pytest --pyargs scpdt -v | |
- name: Self-test CLI without SciPy and MPL | |
run: | | |
python -m scpdt scpdt/tests/finder_cases.py -vv | |
# Install Scipy and MPL | |
- name: Install optional dependencies | |
run: | | |
python -m pip install -e '.[test]' | |
# Tests that require Scipy and MPL can now run | |
- name: Self-test with SciPy and MPL | |
run: | | |
pytest --pyargs scpdt -v | |
- name: Self-test CLI with SciPy and MPL | |
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 -m pip 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 |