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 7f2050c commit db6cc00Copy full SHA for db6cc00
tests/test_timestream.py
@@ -277,6 +277,7 @@ def test_list_tables(timestream_database_and_table):
277
table=f"{timestream_database_and_table}_2",
278
memory_retention_hours=1,
279
magnetic_retention_days=1,
280
+ tags={"foo": "boo", "bar": "xoo"},
281
)
282
283
tables_in_db = wr.timestream.list_tables(database=timestream_database_and_table)
@@ -320,7 +321,7 @@ def test_timestamp_measure_column(timestream_database_and_table):
320
321
{
322
"time": [datetime.now()] * 3,
323
"dim0": ["foo", "boo", "bar"],
- "dim1": [1, 2, 3],
324
+ "dim1": [1, None, 3],
325
"measure_f": [1.1, 1.2, 1.3],
326
"measure_t": [datetime.now(dt.timezone.utc)] * 3,
327
}
0 commit comments