Skip to content

Commit

Permalink
work around an incremental bug in nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
kali committed Mar 12, 2023
1 parent 58b6260 commit ed38ca5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .travis/regular-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,12 @@ do
cargo -q test $CARGO_EXTRA -q -p tract-$c
done
# doc test are not finding libtensorflow.so
cargo -q test $CARGO_EXTRA -q -p tract-tensorflow --lib $ALL_FEATURES
if ! cargo -q test $CARGO_EXTRA -q -p tract-tensorflow --lib $ALL_FEATURES
then
# this crate triggers an incremental bug on nightly.
cargo clean -p tract-tensorflow
cargo -q test $CARGO_EXTRA -q -p tract-tensorflow --lib $ALL_FEATURES
fi

if [ -n "$SHORT" ]
then
Expand Down

0 comments on commit ed38ca5

Please sign in to comment.