From ef8a630f0415b5f092b5886218133ad6117c2d5f Mon Sep 17 00:00:00 2001 From: Nick Tobey Date: Thu, 7 Dec 2023 20:06:25 -0800 Subject: [PATCH] Disable performance bats test. --- integration-tests/bats/performance.bats | 3 +++ 1 file changed, 3 insertions(+) diff --git a/integration-tests/bats/performance.bats b/integration-tests/bats/performance.bats index de15cc3fd3..9419633b49 100644 --- a/integration-tests/bats/performance.bats +++ b/integration-tests/bats/performance.bats @@ -1,6 +1,8 @@ #!/usr/bin/env bats load $BATS_TEST_DIRNAME/helper/common.bash +# NOTE: These are currently disabled because the high variance in GitHub CI makes them unreliable. + # This BATS test attempts to detect performance regressions when using standard workflows on large datasets. # Please note that this is a rough approach that is not designed to detect all performance issues, merely an extra # safeguard against bugs that cause large (order-of-magnitude+) regressions. @@ -31,6 +33,7 @@ create_repo() { } setup() { + skip cp -r $BATS_TEST_DIRNAME/performance-repo/ $BATS_TMPDIR/dolt-repo-$$ cd $BATS_TMPDIR/dolt-repo-$$ }