##// END OF EJS Templates
BUG: Explicitly close Tee in AssertPrints and AssertNotPrints...
BUG: Explicitly close Tee in AssertPrints and AssertNotPrints Fixes a test failure caused by the Tee object being lazily closed only when an AssertPrints/AssertNotPrints object is garbage collected.

File last commit:

r17605:67a0a4ce
r17801:8a65f6a7
Show More
post-checkout
22 lines | 561 B | text/plain | TextLexer
#!/bin/bash
git submodule init
git submodule update
if [[ "$(basename $0)" == "post-merge" ]]; then
PREVIOUS_HEAD=ORIG_HEAD
else
PREVIOUS_HEAD=$1
fi
# if style changed (and less/fabric available), rebuild sourcemaps
if [[
! -z "$(git diff $PREVIOUS_HEAD IPython/html/static/style/ipython.min.css)"
&& ! -z "$(git diff $PREVIOUS_HEAD IPython/html/static/style/style.min.css)"
&& ! -z $(which 2>/dev/null lessc)
&& ! -z $(which 2>/dev/null fab)
]]; then
echo "rebuilding sourcemaps"
cd IPython/html
fab css || echo "failed to compile css"
fi