Skip to content

Commit

Permalink
More test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
saulshanabrook committed Sep 13, 2023
1 parent 7118c93 commit bfd68dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions python/tests/test_array_api.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import pytest
from egglog.exp.array_api import *


Expand Down Expand Up @@ -65,6 +66,7 @@ def test_to_source(snapshot_py):
fn: object = locals_["my_fn"]


@pytest.mark.xfail(reason="unstable output")
def test_sklearn_lda(snapshot_py):
from sklearn import config_context
from sklearn.discriminant_analysis import LinearDiscriminantAnalysis
Expand Down
4 changes: 2 additions & 2 deletions python/tests/test_high_level.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,8 +465,8 @@ def __add__(self, other: Math) -> Math:
def __mul__(self, other: Math) -> Math:
...

@egraph.method(egg_fn="expr")
@property # type: ignore[misc]
@egraph.method(egg_fn="expr") # type: ignore[misc]
@property
def expr(self) -> String:
...

Expand Down

0 comments on commit bfd68dd

Please sign in to comment.