Skip to content

Commit

Permalink
Merge pull request #133 from StollLab/macos_err
Browse files Browse the repository at this point in the history
Seperate PR tests and manual test workflows.
  • Loading branch information
mtessmer committed May 3, 2024
2 parents e509fb5 + 47bbd1f commit e4bf1f3
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/PR_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,6 @@ on:
branches:
- "**"

workflow_dispatch:
inputs:
myCommit:
description: 'Commit SHA1'
required: true
default: 'undefined'
type: string


jobs:
tests:
runs-on: ${{ matrix.os }}
Expand Down
40 changes: 40 additions & 0 deletions .github/workflows/commit_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Test specified commit
on:
workflow_dispatch:
inputs:
myCommit:
description: 'Commit SHA1'
required: true
default: 'undefined'
type: string


jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.11]

steps:
- uses: actions/checkout@v3
with:
ref: ${{ inputs.myCommit }}


- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Test with pytest
run: |
cd tests
pytest

0 comments on commit e4bf1f3

Please sign in to comment.