From d2fe6f0506ecc400846b9448d68a6e23d3c906ee Mon Sep 17 00:00:00 2001 From: Rory Mitchell Date: Fri, 20 Sep 2024 00:58:43 -0700 Subject: [PATCH] Run all pytests including subdirectories --- ci/run_pytests_cpu.sh | 2 +- ci/run_pytests_gpu.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/run_pytests_cpu.sh b/ci/run_pytests_cpu.sh index 8a60f16c..738505d3 100755 --- a/ci/run_pytests_cpu.sh +++ b/ci/run_pytests_cpu.sh @@ -17,7 +17,7 @@ set -e -E -u -o pipefail legate \ --sysmem 28000 \ --module pytest \ - legateboost/test/[!_]**.py \ + legateboost/test/ \ -sv \ --durations=0 \ "${@}" diff --git a/ci/run_pytests_gpu.sh b/ci/run_pytests_gpu.sh index 5502b65b..549d9553 100755 --- a/ci/run_pytests_gpu.sh +++ b/ci/run_pytests_gpu.sh @@ -21,7 +21,7 @@ legate \ --fbmem 28000 \ --sysmem 28000 \ --module pytest \ - legateboost/test/[!_]**.py \ + legateboost/test \ -sv \ --durations=0 \ -k 'not sklearn' \