Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# commit-queue-playground

hello world

Repository here to experiment with the commit queue or whatever else.

## Testing
Expand Down
6 changes: 6 additions & 0 deletions tests/commit-queue-playground/cli/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,9 @@
def test_that_passes():
assert 1 == 1
assert 12 == 12


def test_readme_contains_hello_world():
with open("README.md") as f:
content = f.read()
assert "hello world" in content