Skip to content

Commit 2d25101

Browse files
committed
Add no transaction tests for full coverage
1 parent 4f26369 commit 2d25101

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

tests/datastore_elasticsearch/test_async_elasticsearch.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,3 +233,7 @@ def test_async_elasticsearch_operation_disabled(async_client, loop):
233233
@background_task()
234234
def test_async_elasticsearch_operation_enabled(async_client, loop):
235235
loop.run_until_complete(_exercise_es(async_client))
236+
237+
238+
def test_async_elasticsearch_no_transaction(async_client, loop):
239+
loop.run_until_complete(_exercise_es(async_client))

tests/datastore_elasticsearch/test_elasticsearch.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,3 +229,7 @@ def test_elasticsearch_operation_disabled(client):
229229
@background_task()
230230
def test_elasticsearch_operation_enabled(client):
231231
_exercise_es(client)
232+
233+
234+
def test_elasticsearch_no_transaction(client):
235+
_exercise_es(client)

0 commit comments

Comments
 (0)