Skip to content

Commit

Permalink
Re-enabled enterprise tensorflow testing
Browse files Browse the repository at this point in the history
  • Loading branch information
nvoxland committed Oct 10, 2023
1 parent cc5bd17 commit 06ebe3f
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions deeplake/enterprise/test_tensorflow.py
Expand Up @@ -53,7 +53,6 @@ def index_transform(sample):
@requires_libdeeplake
@pytest.mark.slow
@pytest.mark.flaky
@pytest.mark.skip("causing lockups")
def test_tensorflow_small(local_auth_ds):
with local_auth_ds as ds:
ds.create_tensor("image", max_chunk_size=TF_TESTS_MAX_CHUNK_SIZE)
Expand Down Expand Up @@ -119,7 +118,6 @@ def test_tensorflow_small(local_auth_ds):
@requires_libdeeplake
@pytest.mark.slow
@pytest.mark.flaky
@pytest.mark.skip("causing lockups")
def test_tensorflow_transform(local_auth_ds):
with local_auth_ds as ds:
ds.create_tensor("image", max_chunk_size=TF_TESTS_MAX_CHUNK_SIZE)
Expand Down Expand Up @@ -277,7 +275,6 @@ def test_custom_tensor_order(local_auth_ds):
@requires_libdeeplake
@pytest.mark.slow
@pytest.mark.flaky
@pytest.mark.skip("causing lockups")
def test_readonly_with_two_workers(local_auth_ds):
local_auth_ds.create_tensor("images", max_chunk_size=TF_TESTS_MAX_CHUNK_SIZE)
local_auth_ds.create_tensor("labels", max_chunk_size=TF_TESTS_MAX_CHUNK_SIZE)
Expand Down Expand Up @@ -544,7 +541,7 @@ def test_rename(local_auth_ds):
"num_workers",
[
0,
pytest.param(2, marks=pytest.mark.skip("causing lockups")),
2,
],
)
@pytest.mark.slow
Expand Down Expand Up @@ -574,7 +571,7 @@ def test_indexes(local_auth_ds, num_workers):
"num_workers",
[
0,
pytest.param(2, marks=pytest.mark.skip("causing lockups")),
2,
],
)
@pytest.mark.slow
Expand Down Expand Up @@ -646,7 +643,7 @@ def test_indexes_transform_dict(local_auth_ds, num_workers):
@requires_tensorflow
@requires_libdeeplake
@pytest.mark.parametrize(
"num_workers", [0, pytest.param(2, marks=pytest.mark.skip("causing lockups"))]
"num_workers", [0, 2]
)
@pytest.mark.slow
@pytest.mark.flaky
Expand Down

0 comments on commit 06ebe3f

Please sign in to comment.