We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 613d30b commit 8e7b81fCopy full SHA for 8e7b81f
.github/workflows/test.yml
@@ -29,4 +29,4 @@ jobs:
29
pip install -e ".[dev]"
30
31
- name: Run Pytest
32
- run: pytest -v
+ run: pytest tests/test_example.py
tests/test_example.py
@@ -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