Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update python-package.yml #53

Merged
merged 3 commits into from
May 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
Expand All @@ -36,7 +36,7 @@ jobs:
- if: runner.os == 'macOS'
run: |
python -m pip install --upgrade pip
pip install mkl-devel
brew install openblas
- name: Install python dependencies
run: |
python -m pip install flake8 setuptools pytest pytest-runner coverage pytest-cov
Expand All @@ -51,10 +51,6 @@ jobs:
name: Test with pytest
run: |
python setup.py pytest --addopts "test --cov app"
- if: runner.os == 'macOS'
name: Test with pytest
run: |
python setup.py pytest --addopts "test"
- if: runner.os == 'Windows'
name: Build
run: |
Expand Down
Loading