Unittests for 4ee74c082f069d3ed3aaff4bdc49a82617a6bf88 #229
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: Unittests | |
run-name: Unittests for ${{ github.sha }} | |
on: [push] | |
jobs: | |
tests: | |
timeout-minutes: 10 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] | |
exclude: | |
- os: ubuntu-latest | |
python-version: '3.6' | |
include: | |
- os: ubuntu-20.04 | |
python-version: '3.6' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Display Python version for testing purposes | |
run: python -c "import sys; print(sys.version)" | |
- name: Install Python dependencies | |
uses: py-actions/py-dependency-install@v4 | |
with: | |
path: "requirements.txt" | |
- name: Run unittests with pytest | |
run: python -m pytest -v | |
working-directory: ./UnitTests | |
- name: Install nbmake | |
run: python -m pip install nbmake | |
- name: pytest notebooks | |
run: python -m pytest --nbmake Readme.ipynb | |
working-directory: . |