Skip to content

Commit

Permalink
skip python 3.8 in test
Browse files Browse the repository at this point in the history
  • Loading branch information
arogozhnikov committed May 12, 2024
1 parent 09c3dac commit 5534315
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_experimental.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
import sys

import pytest

from . import is_backend_tested


def test_torch_einsplit():
if sys.version_info < (3, 9):
pytest.skip()
if not is_backend_tested("torch"):
pytest.skip()

Expand Down

0 comments on commit 5534315

Please sign in to comment.