forked from LBRYCommunity/lbry-sdk
another claim search performance test case
This commit is contained in:
parent
dbae939808
commit
82fd3c632e
1 changed files with 6 additions and 1 deletions
|
@ -29,6 +29,11 @@ COMMON_AND_RARE = [
|
||||||
'ufos'
|
'ufos'
|
||||||
]
|
]
|
||||||
|
|
||||||
|
COMMON_AND_RARE2 = [
|
||||||
|
'city fix',
|
||||||
|
'gaming'
|
||||||
|
]
|
||||||
|
|
||||||
RARE_ANY_TAGS = [
|
RARE_ANY_TAGS = [
|
||||||
'city fix',
|
'city fix',
|
||||||
'ufos',
|
'ufos',
|
||||||
|
@ -61,7 +66,7 @@ ORDER_BY = [
|
||||||
|
|
||||||
def get_args(limit=20):
|
def get_args(limit=20):
|
||||||
args = []
|
args = []
|
||||||
any_tags_combinations = [DEFAULT_ANY_TAGS, COMMON_AND_RARE, RARE_ANY_TAGS, CITY_FIX, []]
|
any_tags_combinations = [DEFAULT_ANY_TAGS, COMMON_AND_RARE, RARE_ANY_TAGS, COMMON_AND_RARE2, CITY_FIX, []]
|
||||||
not_tags_combinations = [MATURE_TAGS, []]
|
not_tags_combinations = [MATURE_TAGS, []]
|
||||||
for no_totals in [True]:
|
for no_totals in [True]:
|
||||||
for offset in [0, 100]:
|
for offset in [0, 100]:
|
||||||
|
|
Loading…
Reference in a new issue