-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from jupyter-naas/fix-pytest
Fix pytest
- Loading branch information
Showing
3 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/sh | ||
|
||
# Execute the make target | ||
make test | ||
|
||
# Capture the exit status of the make command | ||
STATUS=$? | ||
|
||
# If the make command fails, exit with the same status | ||
if [ $STATUS -ne 0 ]; then | ||
echo "Pre-commit hook failed: make test failed with status $STATUS" | ||
exit $STATUS | ||
fi | ||
|
||
# If the make command succeeds, allow the commit to proceed | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters