Skip to content

Commit

Permalink
chore: remove skip
Browse files Browse the repository at this point in the history
Signed-off-by: Joan Martinez <[email protected]>
  • Loading branch information
JoanFM committed Nov 22, 2023
1 parent 8eadabb commit 3c17304
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/integration/stateful/test_stateful.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ def test_stateful_index_search_container(shards, tmpdir, stateful_exec_docker_im
assert_all_replicas_indexed(dep, search_da, key='random_num')


@pytest.mark.skip()
@pytest.mark.parametrize('executor_cls', [MyStateExecutor, MyStateExecutorNoSnapshot])
def test_add_new_replica(executor_cls, tmpdir):
from jina.parsers import set_pod_parser
Expand All @@ -233,7 +232,7 @@ def test_add_new_replica(executor_cls, tmpdir):
)
with ctx_mngr:
index_da = DocumentArray[TextDocWithId](
[Document(id=f'{i}', text=f'ID {i}') for i in range(100)]
[TextDocWithId(id=f'{i}', text=f'ID {i}') for i in range(100)]
)
ctx_mngr.index(inputs=index_da, request_size=1)
# allowing sometime for snapshots
Expand Down

0 comments on commit 3c17304

Please sign in to comment.