Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
Signed-off-by: Jinzhe Zeng <[email protected]>
  • Loading branch information
njzjz committed Nov 9, 2024
1 parent b0a496c commit 4e42105
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions source/tests/jax/jax2tf/test_nlist.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# SPDX-License-Identifier: LGPL-3.0-or-later

import pytest
import unittest

import tensorflow as tf
import tensorflow.experimental.numpy as tnp

Expand All @@ -20,7 +21,7 @@
dtype = tnp.float64


@pytest.mark.skipif(
@unittest.skipIf(
not DP_TEST_TF2_ONLY,
reason="TF2 conflicts with TF1",
)
Expand Down
5 changes: 3 additions & 2 deletions source/tests/jax/jax2tf/test_region.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# SPDX-License-Identifier: LGPL-3.0-or-later


import pytest
import unittest

import tensorflow as tf
import tensorflow.experimental.numpy as tnp

Expand All @@ -19,7 +20,7 @@
)


@pytest.mark.skipif(
@unittest.skipIf(
not DP_TEST_TF2_ONLY,
reason="TF2 conflicts with TF1",
)
Expand Down

0 comments on commit 4e42105

Please sign in to comment.