Skip to content

Commit 5f313cb

Browse files
test: add boilerplate test
1 parent ad9ecb3 commit 5f313cb

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

tests/.gitkeep

Whitespace-only changes.

tests/test_placeholder.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import pytest
2+
3+
def test_placeholder(capfd):
4+
"""
5+
Boilerplate test to allow for GitHub Actions to run.
6+
7+
TODO: write actual tests
8+
"""
9+
print("This is a placeholder test running in CI/CD pipeline")
10+
assert True
11+
out, err = capfd.readouterr()
12+
assert "placeholder test" in out, "Expected output not found"

0 commit comments

Comments
 (0)