From 68719b379e427eec831b8f922e8911a86f198c21 Mon Sep 17 00:00:00 2001 From: Mathieu Poumeyrol Date: Thu, 7 Sep 2023 13:09:54 +0200 Subject: [PATCH] fix darwin dep on numpy for tests --- .travis/onnx-tests.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis/onnx-tests.sh b/.travis/onnx-tests.sh index 40b09585c6..39a951fd36 100755 --- a/.travis/onnx-tests.sh +++ b/.travis/onnx-tests.sh @@ -15,7 +15,8 @@ rustc --version if [ `uname` = "Darwin" ] then brew install coreutils -elif [ -n "$GITHUB_ACTIONS" ] +fi +if [ -n "$GITHUB_ACTIONS" ] then pip install numpy fi