Skip to content

Commit

Permalink
cicd: fixing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-nelson-uiuc committed Nov 28, 2024
1 parent fc77e92 commit b1b10a5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_selector.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from pyspark.sql import SparkSession, types as T

from tidy_tools.core import selector as cs
from tidy_tools.tidy import TidyDataFrame


@pytest.fixture
Expand All @@ -14,7 +15,7 @@ def spark_fixture():

@pytest.fixture
def sample_data(spark_fixture):
yield spark_fixture.createDataFrame(
data = spark_fixture.createDataFrame(
[
{
"name": "Homer",
Expand Down Expand Up @@ -55,6 +56,7 @@ def sample_data(spark_fixture):
]
),
)
yield TidyDataFrame(data)


class TestColumnSelector:
Expand Down

0 comments on commit b1b10a5

Please sign in to comment.