From 85cae70cefe58d5ffb336e8fb77f73fc83c8b753 Mon Sep 17 00:00:00 2001 From: Tal Regev Date: Thu, 4 Jan 2024 08:51:19 +0200 Subject: [PATCH] revert lines according to review comments. --- .github/scripts/python.sh | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/scripts/python.sh b/.github/scripts/python.sh index c851c7e36c..0c04eeec3d 100644 --- a/.github/scripts/python.sh +++ b/.github/scripts/python.sh @@ -70,8 +70,16 @@ function build() function test() { - cmake --build build --target python-test - cmake --build build --target python-test-unstable + cd $GITHUB_WORKSPACE/python/gtsam/tests + $PYTHON -m unittest discover -v + cd $GITHUB_WORKSPACE + + cd $GITHUB_WORKSPACE/python/gtsam_unstable/tests + $PYTHON -m unittest discover -v + cd $GITHUB_WORKSPACE + + # cmake --build build --target python-test + # cmake --build build --target python-test-unstable } # select between build or test