We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 227e051 commit b19d053Copy full SHA for b19d053
README.md
@@ -110,6 +110,17 @@ with testgres.get_new_node('master') as master:
110
111
> Note: you could take a look at [`pg_pathman`](https://.com/postgrespro/pg_pathman) to get an idea of `testgres`' capabilities.
112
113
+### Benchmarks
114
+
115
+`testgres` also can help you to make benchmarks using `pgbench` from postgres installation.
116
117
+```
118
+with testgres.get_new_node('master') as master:
119
+master.init().start()
120
+p = master.pg_bench_init(scale=10).pgbench(options=['-T', '60'])
121
+p.wait()
122
123
124
## Authors
125
126
[Ildar Musin](https://.com/zilder) <i.musin(at)postgrespro.ru> Postgres Professional Ltd., Russia
0 commit comments