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

Drop macos tests for now... #60

Merged
merged 1 commit into from
Jun 28, 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
50 changes: 25 additions & 25 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,29 +29,29 @@ jobs:
pip install ${{ matrix.test-tool }}
tests/run_tests.sh ${{ matrix.test-tool }}

build-macos-latest:
runs-on: macOS-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.8, 3.9]
test-tool: [pylint, flake8, pytest]
# build-macos-latest:
# runs-on: macOS-latest
# strategy:
# max-parallel: 4
# matrix:
# python-version: [3.8, 3.9]
# test-tool: [pylint, flake8, pytest]

steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
brew install libomp
python -m pip install --upgrade pip
pip install --upgrade setuptools
pip install -r requirements.txt
# For now always install pytest, needed e.g. by pylint when browsing though pytest dir
pip install pytest
- name: Test with ${{ matrix.test-tool }}
run: |
pip install ${{ matrix.test-tool }}
tests/run_tests.sh ${{ matrix.test-tool }}
# steps:
# - uses: actions/checkout@v1
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v1
# with:
# python-version: ${{ matrix.python-version }}
# - name: Install dependencies
# run: |
# brew install libomp
# python -m pip install --upgrade pip
# pip install --upgrade setuptools
# pip install -r requirements.txt
# # For now always install pytest, needed e.g. by pylint when browsing though pytest dir
# pip install pytest
# - name: Test with ${{ matrix.test-tool }}
# run: |
# pip install ${{ matrix.test-tool }}
# tests/run_tests.sh ${{ matrix.test-tool }}
Loading