Disable fsync in arbitrary config tests

We have fsync enabled for regular tests already in `pg_regress_multi.pl`.
This does the same for the arbitrary config tests.

On my machine this changes the runtime from the following command from
~37 to ~25 seconds:

```bash
make -C src/test/regress/ check-arbitrary-configs CONFIGS=CitusDefaultClusterConfig
```
all-test-improvements
Jelte Fennema 2022-03-14 14:47:28 +01:00
parent d5397b3a1f
commit 1258484f59
1 changed files with 1 additions and 0 deletions

View File

@ -103,6 +103,7 @@ class CitusBaseClusterConfig(object, metaclass=NewInitCaller):
self.settings = {
"shared_preload_libraries": "citus",
"log_error_verbosity": "terse",
"fsync": False,
"citus.node_conninfo": "sslmode=prefer",
"citus.enable_repartition_joins": True,
"citus.repartition_join_bucket_count_per_node": 2,