skip concurrent read and write tests in short mode

Signed-off-by: Cenk Alti <cenkalti@gmail.com>
pull/466/head
Cenk Alti 2023-04-15 23:48:08 -04:00
parent 4ad7b144f3
commit 651c74ab07
No known key found for this signature in database
GPG Key ID: 80352C9D18566B1B
1 changed files with 3 additions and 0 deletions

View File

@ -48,6 +48,9 @@ TestConcurrentReadAndWrite verifies:
following reading transactions (with txid >= previous writing txid).
*/
func TestConcurrentReadAndWrite(t *testing.T) {
if testing.Short() {
t.Skip("skipping test in short mode.")
}
bucket := []byte("data")
keys := []string{"key0", "key1", "key2", "key3", "key4", "key5", "key6", "key7", "key8", "key9"}