Skip to content

Commit b77cf12

Browse files
committed
Test
1 parent 821c501 commit b77cf12

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/test_setup_script.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,20 @@ jobs:
4747
# Check that template-python was replaced in pyproject.toml
4848
if grep -q "template-python" pyproject.toml; then
4949
echo "Error: 'template-python' still found in pyproject.toml"
50+
exit 1
51+
fi
52+
53+
if ! grep -q "my-test-app" pyproject.toml; then
54+
echo "Error: 'my-test-app' not found in pyproject.toml"
55+
exit 1
56+
fi
57+
58+
echo "✓ All checks passed!"
59+
60+
- name: Install project with new name
61+
run: |
62+
pip install --upgrade pip
63+
pip install -e .
5064
5165
- name: Test renamed command works
5266
run: |

0 commit comments

Comments
 (0)