Merge pull request #213 from NREL/rjf/prevent-recursion-limit #331
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: tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
test: | |
if: github.event.pull_request.merged == false | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
env: | |
PYTHON: ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: set up python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install package | |
run: | | |
pip install ".[dev]" | |
pip install pandas # determinism test dependency | |
- name: Run mypy | |
run: mypy . --ignore-missing-imports | |
- name: Run black | |
run: | | |
black nrel tests --check | |
# Once all files have passed through pre-commit, the black check can be replaced by pre-commit: | |
# - name: Run pre-commit in CI | |
# uses: pre-commit/action@v3.0.0 | |
- name: Python unit tests | |
run: | | |
pytest tests/ -v | |
- name: HIVE determinism test | |
run: | | |
python examples/test_for_determinism.py --iterations 2 |