Skip to content

Commit 760039b

Browse files
committed
Skip linalg in travis
1 parent 5e144f2 commit 760039b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

ci/travis/test.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ cargo test --verbose --features $FEATURES -- --test-threads=1
77
rustdoc -L target/debug/deps/ --test README.md
88

99
for example in examples/*; do
10-
cd $example
11-
tox -e py
12-
cd $TRAVIS_BUILD_DIR
10+
if [ $example != 'examples/linalg' ]; then
11+
cd $example
12+
tox -e py
13+
cd $TRAVIS_BUILD_DIR
14+
fi
1315
done

0 commit comments

Comments
 (0)