Added Horizontal plots and various additional features, documentation, tutorial, tests, and improving code clarity #308
Workflow file for this run
This file contains hidden or 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: Python pytest | |
on: [workflow_dispatch, pull_request, push] | |
jobs: | |
test-pytest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
cache: "pip" | |
cache-dependency-path: settings.ini | |
- name: Run pytest | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e '.[dev]' | |
pytest nbs/tests/ --mpl --mpl-baseline-path=nbs/tests/mpl_image_tests/baseline_images |