We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 821c501 commit b77cf12Copy full SHA for b77cf12
1 file changed
.github/workflows/test_setup_script.yml
@@ -47,6 +47,20 @@ jobs:
47
# Check that template-python was replaced in pyproject.toml
48
if grep -q "template-python" pyproject.toml; then
49
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
56
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 .
64
65
- name: Test renamed command works
66
run: |
0 commit comments