Skip to content

Commit 12dd046

Browse files
committed
NRL-1875 Add 15m and 55m volume distributions for perfs tests
1 parent 5a4af5e commit 12dd046

1 file changed

Lines changed: 12 additions & 4 deletions

File tree

tests/performance/seed_data_constants.py

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,16 +59,24 @@
5959
}, # summary record currently has only one supplier
6060
}
6161

62+
VOL_15M_POINTERS_TYPE_DISTRIBUTIONS = {"824321000000109": 1}
63+
64+
VOL_15M_POINTERS_CUSTODIAN_DISTRIBUTIONS = {"16521000000101": {"TD2L9A": 1}}
65+
66+
VOL_55M_POINTERS_TYPE_DISTRIBUTIONS = {"16521000000101": 1}
67+
68+
VOL_55M_POINTERS_CUSTODIAN_DISTRIBUTIONS = {"16521000000101": {"TX26": 1}}
69+
6270
DEFAULT_COUNT_DISTRIBUTIONS = {"1": 91, "2": 8, "3": 1}
6371

6472
TYPE_DISTRIBUTION_PROFILES = {
6573
"default": DEFAULT_TYPE_DISTRIBUTIONS,
66-
# "15m_pointers": DEFAULT_TYPE_DISTRIBUTIONS,
67-
# "55m_pointers": DEFAULT_TYPE_DISTRIBUTIONS,
74+
"15m_pointers": VOL_15M_POINTERS_TYPE_DISTRIBUTIONS,
75+
"55m_pointers": VOL_55M_POINTERS_TYPE_DISTRIBUTIONS,
6876
}
6977

7078
CUSTODIAN_DISTRIBUTION_PROFILES = {
7179
"default": DEFAULT_CUSTODIAN_DISTRIBUTIONS,
72-
# "15m_pointers": DEFAULT_CUSTODIAN_DISTRIBUTIONS,
73-
# "55m_pointers": DEFAULT_CUSTODIAN_DISTRIBUTIONS,
80+
"15m_pointers": VOL_15M_POINTERS_CUSTODIAN_DISTRIBUTIONS,
81+
"55m_pointers": VOL_55M_POINTERS_CUSTODIAN_DISTRIBUTIONS,
7482
}

0 commit comments

Comments
 (0)