diff --git a/justfile b/justfile index f0b4f68f9..ce81b660b 100644 --- a/justfile +++ b/justfile @@ -41,6 +41,10 @@ test-unit *OPTIONS: (test "--suite" "check") # Run integration tests only test-integration *OPTIONS: install (test "--suite" "installcheck") +# Run functional2 tests using pytest directly, allowing for additional arguments to be passed to pytest e.g. for more granular test selection +test-functional2 *OPTIONS: + cd tests && python -m pytest -v {{ OPTIONS }} functional2 + alias clang-tidy := lint # Lint with `clang-tidy`