Skip to content

Commit 2280232

Browse files
committed
ci: add pytest for basic evaluation
1 parent 4eb8f3e commit 2280232

File tree

2 files changed

+4
-14
lines changed

2 files changed

+4
-14
lines changed

.github/workflows/test-pip.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: Test (pip)
22

3-
on:
4-
push:
5-
branches:
6-
- main
7-
pull_request:
3+
on: [push, pull_request]
84

95
jobs:
106
test-pip:
@@ -40,4 +36,4 @@ jobs:
4036
- name: Run pytest
4137
run: |
4238
source venv/bin/activate
43-
pytest
39+
pytest -s tests/

.github/workflows/tests.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
name: Run Tests
22

3-
on:
4-
push:
5-
branches:
6-
- main
7-
pull_request:
8-
branches:
9-
- main
3+
on: [push, pull_request]
104

115
jobs:
126
test:
@@ -32,5 +26,5 @@ jobs:
3226
run: uv sync --reinstall --locked --all-extras --dev
3327

3428
- name: Run unit tests
35-
run: uv run pytest
29+
run: uv run pytest -s tests/
3630

0 commit comments

Comments
 (0)