Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml → .github/workflows/signed.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: test
name: signed

on:
push:
Expand Down Expand Up @@ -26,4 +26,4 @@ jobs:

- name: Run tests
run: |
pixi run pytest -v src/mechdriver/tests/
pixi run pytest -v src/mechdriver/tests/ -k "signature"
29 changes: 29 additions & 0 deletions .github/workflows/test_other.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: test-other

on:
push:
pull_request:
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false

steps:
# Repository
- name: Checkout the code
uses: actions/checkout@v4

- name: Set up Pixi
uses: prefix-dev/setup-pixi@v0.8.1

- name: Pip install
run: |
yes Y | pixi run download Auto-Mech no http
pixi run install

- name: Run tests
run: |
pixi run pytest -v src/mechdriver/tests/ -k "not signature and not prompt"
29 changes: 29 additions & 0 deletions .github/workflows/test_prompt.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: test-prompt

on:
push:
pull_request:
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false

steps:
# Repository
- name: Checkout the code
uses: actions/checkout@v4

- name: Set up Pixi
uses: prefix-dev/setup-pixi@v0.8.1

- name: Pip install
run: |
yes Y | pixi run download Auto-Mech no http
pixi run install

- name: Run tests
run: |
pixi run pytest -v src/mechdriver/tests/ -k "prompt"
Loading
Loading