Skip to content

Commit 8e7b81f

Browse files
committed
just test subset in test_example.py
1 parent 613d30b commit 8e7b81f

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929
pip install -e ".[dev]"
3030
3131
- name: Run Pytest
32-
run: pytest -v
32+
run: pytest tests/test_example.py

tests/test_example.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
"""This module is a simply placeholder to demonstrate that test can be
2+
triggered from CI/CD workflows. It does not contain any actual tests."""
3+
4+
5+
def test_placeholder():
6+
"""This is a placeholder test that always passes."""
7+
assert True

0 commit comments

Comments
 (0)