Skip to content

Commit

Permalink
remove stubs file
Browse files Browse the repository at this point in the history
  • Loading branch information
kartikgupta-db committed Feb 22, 2024
1 parent ebe0fc0 commit 1cd1c48
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
def test_runtime_spark(w, env_or_skip):
env_or_skip("SPARK_CONNECT_CLUSTER_ID")

from databricks.sdk.runtime import spark
from databricks.sdk.runtime import * # type: ignore
assert spark.sql("SELECT 1").collect()[0][0] == 1


def test_runtime_display(w, env_or_skip):
from databricks.sdk.runtime import display, displayHTML
def test_runtime_display():
from databricks.sdk.runtime import * # type: ignore

# assert no errors
display("test")
Expand Down

0 comments on commit 1cd1c48

Please sign in to comment.