Skip to content

Commit

Permalink
Merge pull request #509 from laughingman7743/fix_warnings
Browse files Browse the repository at this point in the history
Fix PytestUnknownMarkWarning: Unknown pytest.mark.depends
  • Loading branch information
laughingman7743 committed Feb 3, 2024
1 parent 42e186c commit 2c4cbfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/pyathena/spark/test_spark_cursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def test_spark_dataframe(self, spark_cursor):
)
)

@pytest.mark.depends(on="test_spark_dataframe")
@pytest.mark.dependency(depends="test_spark_dataframe")
def test_spark_sql(self, spark_cursor):
spark_cursor.execute(
textwrap.dedent(
Expand Down

0 comments on commit 2c4cbfe

Please sign in to comment.