Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
icexelloss committed Aug 15, 2019
1 parent 4bb17f9 commit 97a4ece
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions ibis/tests/backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -558,3 +558,15 @@ def skip_if_missing_dependencies() -> None:
def connect(data_directory):
from ibis.tests.all.conftest import get_pyspark_testing_client
return get_pyspark_testing_client(data_directory)

@property
def functional_alltypes(self) -> ir.TableExpr:
return self.connection.table('functional_alltypes')

@property
def batting(self) -> ir.TableExpr:
return self.connection.table('batting')

@property
def awards_players(self) -> ir.TableExpr:
return self.connection.table('awards_players')

0 comments on commit 97a4ece

Please sign in to comment.