Skip to content

Commit 4157628

Browse files
author
Manan Gandhi
committed
Move wheel build and test scripts to deploy directory
1 parent e4ca14d commit 4157628

4 files changed

Lines changed: 14 additions & 0 deletions

File tree

File renamed without changes.

deploy/run_tests.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
set -e
3+
4+
echo "Testing all Python wheels..."
5+
echo
6+
7+
for ARCH in x86_64 aarch64; do
8+
for PY_VER in 3.10 3.11; do
9+
./test_docker.sh $ARCH $PY_VER
10+
echo
11+
done
12+
done
13+
14+
echo "All tests completed successfully!"
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)