File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 4
4
import subprocess
5
5
import shutil
6
6
import six
7
- from testgres import get_new_node , clean_all
7
+ import testgres
8
8
import hashlib
9
9
import re
10
10
import pwd
@@ -153,7 +153,7 @@ def make_simple_node(
153
153
real_base_dir = os .path .join (self .tmp_path , base_dir )
154
154
shutil .rmtree (real_base_dir , ignore_errors = True )
155
155
156
- node = get_new_node ('test' , base_dir = real_base_dir )
156
+ node = testgres . get_new_node ('test' , base_dir = real_base_dir )
157
157
node .init (initdb_params = initdb_params )
158
158
159
159
# Sane default parameters, not a shit with fsync = off from testgres
@@ -585,7 +585,7 @@ def get_username(self):
585
585
def del_test_dir (self , module_name , fname ):
586
586
""" Del testdir and optimistically try to del module dir"""
587
587
try :
588
- clean_all ()
588
+ testgres . clean_all ()
589
589
except :
590
590
pass
591
591
You can’t perform that action at this time.
0 commit comments