Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 432 Bytes
270c122 ea6034c 7845083 ea6034c 270c122 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
from src.benchmarks import QABenchmarks, LongDocBenchmarks
def test_qabenchmarks():
for benchmark_list in list(QABenchmarks):
print(benchmark_list.name)
for b in list(benchmark_list.value):
print(b)
qa_benchmarks = QABenchmarks["2404"]
l = list(frozenset([c.value.domain for c in list(qa_benchmarks.value)]))
print(l)
def test_longdocbenchmarks():
print(list(LongDocBenchmarks))
|