From 9233ae7bb21b2d5c9c33ed4aecc3013615034806 Mon Sep 17 00:00:00 2001 From: "Michael J. Sullivan" Date: Wed, 24 Apr 2024 15:48:40 -0700 Subject: [PATCH] Allow actions to pass in a specific list of tests to run on macos The idea here is that it will let us run a more trimmed down list of tests for macos on x86, where the tests are shockingly slow. --- integration/macos/test.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/integration/macos/test.sh b/integration/macos/test.sh index 22aca378..2fb1ed8c 100755 --- a/integration/macos/test.sh +++ b/integration/macos/test.sh @@ -55,8 +55,10 @@ fi export PATH="${workdir}/bin/:${PATH}" +# ${PKG_TEST_FILES} is specificaly used outside the quote so that it +# can contain a glob. "${workdir}/bin/python3" \ -m edb.tools --no-devmode test \ - "${workdir}/data/tests" \ + "${workdir}/data/tests/"${PKG_TEST_FILES} \ -e cqa_ -e tools_ \ --verbose ${dash_j}