summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcheck5
-rwxr-xr-xdebian/rules2
2 files changed, 4 insertions, 3 deletions
diff --git a/check b/check
index 0a75438..3151caa 100755
--- a/check
+++ b/check
@@ -31,11 +31,12 @@ $hideok cargo fmt -- --check
$hideok find . -type f -name '*.py' ! -name test.py -exec black --check '{}' +
$hideok subplot docgen jt.subplot --output jt.html
-$hideok subplot docgen jt.subplot --output jt.pdf
$hideok subplot codegen jt.subplot --output test.py
rm -f test.log
target="$(cargo metadata --format-version=1 | jq -r .target_directory)"
-$hideok python3 test.py --log test.log --env "CARGO_TARGET_DIR=$target" "$@"
+if ! $hideok python3 test.py --log test.log --env "CARGO_TARGET_DIR=$target" "$@"; then
+ cat test.log
+fi
echo "Everything seems to be in order."
diff --git a/debian/rules b/debian/rules
index e80a0aa..6589e45 100755
--- a/debian/rules
+++ b/debian/rules
@@ -11,4 +11,4 @@ override_dh_auto_install:
find debian/jt -name '.crates*' -delete
override_dh_auto_test:
- ./check
+ ./check -v