File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -139,9 +139,9 @@ def install_rebirthdb(self):
139
139
self ._execute_command ('source /etc/lsb-release && echo "deb https://dl.bintray.com/{username}/apt $DISTRIB_CODENAME main" | tee /etc/apt/sources.list.d/rebirthdb.list' .format (username = BINTRAY_USERNAME ))
140
140
self ._execute_command ('wget -qO- https://dl.bintray.com/{username}/keys/pubkey.gpg | apt-key add -' .format (username = BINTRAY_USERNAME ))
141
141
142
- self ._print_info ('installing rebirthdb ' )
143
- self ._execute_command ('apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y rebirthdb ' )
144
- self ._execute_command ('echo "bind=all" > /etc/rebirthdb /instances.d/default.conf' )
142
+ self ._print_info ('installing rethinkdb ' )
143
+ self ._execute_command ('apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install --allow-unauthenticated -y rethinkdb ' )
144
+ self ._execute_command ('echo "bind=all" > /etc/rethinkdb /instances.d/default.conf' )
145
145
146
146
def start_rebirthdb (self ):
147
147
self ._print_info ('restarting rebirthdb' )
Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ class IntegrationTestCaseBase(object):
10
10
11
11
def connect (self ):
12
12
self .conn = r .connect (
13
- host = rethinkdb_host
13
+ host = self . rethinkdb_host
14
14
)
15
15
16
16
def setup_method (self ):
17
- rethinkdb_host = os .getenv ('RETHINKDB_HOST' )
17
+ self . rethinkdb_host = os .getenv ('RETHINKDB_HOST' )
18
18
19
19
self .connect ()
20
20
You can’t perform that action at this time.
0 commit comments