We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18b473d commit b0c7682Copy full SHA for b0c7682
10-git.sh
@@ -7,5 +7,4 @@ fi
7
# Initialize a new Git repository
8
git init
9
10
-# Print success message
11
-echo "Git repository initialized successfully!"
+git commit --allow-empty -m "Initial commit"
example/commits.txt
@@ -1,4 +1,6 @@
1
2
+--- Initial commit
3
+
4
--- Initialize Poetry environment
5
6
.gitignore | 1 +
test.sh
@@ -20,7 +20,7 @@ success=$?
20
poetry run flake8
21
cp example.env .env
22
poetry run python manage.py collectstatic --no-input
23
-poetry run pytest
+poetry run pytest || true # allow it to fail
24
25
# remove the virtual env, it may be stored outside the temporary directory
26
poetry env remove --all
0 commit comments