We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45588e1 commit adaa7edCopy full SHA for adaa7ed
setup.py
@@ -2,7 +2,7 @@
2
setup(
3
name = 'testgres',
4
packages = ['testgres'],
5
- version = '0.1.5',
+ version = '0.1.6',
6
description = 'Testing utility for postgresql and it''s extensions',
7
author = 'Ildar Musin',
8
author_email = 'zildermann@gmail.com',
testgres/testgres.py
@@ -372,4 +372,6 @@ def clean_all():
372
def stop_all():
373
global registered_nodes
374
for node in registered_nodes:
375
- node.stop()
+ # stop server if it still working
376
+ if self.working:
377
+ node.stop()
0 commit comments