Added new tests with corresponding references for calc modes. #303
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: pytest-ppy | |
on: [push, pull_request] | |
jobs: | |
pytest-ppy: | |
runs-on: ubuntu-latest | |
name: pytest-ppy | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v2 | |
- name: Set up Python environment | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Install pytest | |
run: | | |
pip install . | |
pip install pytest-plt | |
- name: run pytest | |
run: | | |
cd tests | |
pytest |