Tweaking the numpy version 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: Regression tests | |
on: | |
push: | |
branches: [ main, remove-animation ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
numpy-version: ["numpy<2.0.0", "numpy>=2.0.0"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dependencies | |
run: | | |
sudo apt-get install ffmpeg ghostscript | |
python -m pip install --upgrade pip | |
pip install coveralls | |
pip install ${{ matrix.numpy-version }} | |
pip install .[all] | |
- name: Run tests | |
run: | | |
coverage run --source toyplot -m behave --tags=~wip --logging-level INFO --no-logcapture | |
coverage report | |
- name: Upload coverage to Coveralls | |
run: coveralls --service=github | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Archive failed tests | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: failed | |
path: features/failed | |
if-no-files-found: ignore | |