From 628d2667dacea7fc11066b5c579177f6f8268f98 Mon Sep 17 00:00:00 2001 From: Georgy Moshkin <gmoshkin@picodata.io> Date: Wed, 1 Jun 2022 13:13:36 +0300 Subject: [PATCH] fix(test): fix some pyright warnings --- test/int/conftest.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/test/int/conftest.py b/test/int/conftest.py index cbdbcc2a76..9da3608f09 100644 --- a/test/int/conftest.py +++ b/test/int/conftest.py @@ -167,7 +167,7 @@ class Instance: return f"Instance({self.instance_id}, listen={self.listen})" @contextmanager - def connect(self, timeout: int): + def connect(self, timeout: int | float): c = Connection( self.host, self.port, @@ -180,12 +180,12 @@ class Instance: c.close() @normalize_net_box_result - def call(self, fn, *args, timeout: int = 1): + def call(self, fn, *args, timeout: int | float = 1): with self.connect(timeout) as conn: return conn.call(fn, args) @normalize_net_box_result - def eval(self, expr, *args, timeout: int = 1): + def eval(self, expr, *args, timeout: int | float = 1): with self.connect(timeout) as conn: return conn.eval(expr, *args) @@ -271,9 +271,6 @@ class Instance: def remove_data(self): rmtree(self.data_dir) - def __hash__(self): - return hash(self.id) ^ hash(self.cluster_id) ^ hash(self.listen) - def _raft_status(self) -> RaftStatus: status = self.call("picolib.raft_status") assert isinstance(status, dict) -- GitLab