Skip to content

add as_float, change repr(x) -> str(x) #64

add as_float, change repr(x) -> str(x)

add as_float, change repr(x) -> str(x) #64

name: Regression tests
on:
push:
branches: [ main ]
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"]
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 .[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