From 2831ff5ca3979f996ecf41ffa076e0036cb2e0f5 Mon Sep 17 00:00:00 2001 From: carlosgmartin Date: Mon, 9 Jun 2025 13:49:12 -0400 Subject: [PATCH] Avoid unnecessary directory change in test.sh. --- test.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test.sh b/test.sh index 184520440..b774f392e 100755 --- a/test.sh +++ b/test.sh @@ -81,9 +81,7 @@ cd "${REPO_DIR}" # Build Sphinx docs. python3 -m uv pip install --quiet --editable ".[docs]" -cd docs -make html -make doctest # run doctests -cd .. +make html -C docs +make doctest -C docs # run doctests echo "All tests passed. Congrats!"