Skip to content

Commit

Permalink
Merge pull request #79 from NREL/testpypi
Browse files Browse the repository at this point in the history
Test the pypi package
  • Loading branch information
fmuni authored Jan 3, 2025
2 parents 90de193 + e0d20cf commit 28a2a88
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
run: |
source .github/linters/formatting.sh
format . true
Test-BiRD:
name: Test-BiRD (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -73,6 +74,31 @@ jobs:
- name: Test postprocessing
run: |
pytest tests/postprocess
Test-pypi-Bird:
name: Test-pypi-BiRD (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
os: ['ubuntu-latest']
defaults:
run:
working-directory: ${{github.workspace}}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{matrix.python-version}}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install nrel-bird
pip install pytest
- name: Test
run: pytest .

Test-OF:
name: Test-OF (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 28a2a88

Please sign in to comment.