We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4eb8f3e commit 2280232Copy full SHA for 2280232
.github/workflows/test-pip.yml
@@ -1,10 +1,6 @@
1
name: Test (pip)
2
3
-on:
4
- push:
5
- branches:
6
- - main
7
- pull_request:
+on: [push, pull_request]
8
9
jobs:
10
test-pip:
@@ -40,4 +36,4 @@ jobs:
40
36
- name: Run pytest
41
37
run: |
42
38
source venv/bin/activate
43
- pytest
39
+ pytest -s tests/
.github/workflows/tests.yml
@@ -1,12 +1,6 @@
name: Run Tests
11
12
test:
@@ -32,5 +26,5 @@ jobs:
32
26
run: uv sync --reinstall --locked --all-extras --dev
33
27
34
28
- name: Run unit tests
35
- run: uv run pytest
29
+ run: uv run pytest -s tests/
30
0 commit comments