We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60e1d3d commit 4ac66b7Copy full SHA for 4ac66b7
tests/test_dynamodb.py
@@ -191,6 +191,8 @@ def dynamo():
191
192
@pytest.fixture(scope="module")
193
def simple_table(dynamo):
194
+ import os
195
+ print(os.popen("docker ps").read())
196
if not SimpleKeyModel.exists():
197
SimpleKeyModel.initialize()
198
assert SimpleKeyModel.exists()
@@ -295,8 +297,6 @@ def nested_query_data_empty_ticket(nested_table):
295
297
296
298
299
def test_save_get_delete_simple(dynamo, simple_table):
- import os
- print(os.popen("docker ps").read())
300
data = simple_model_data_generator()
301
a = SimpleKeyModel.parse_obj(data)
302
a.save()
0 commit comments