Spaces:
AIR-Bench
/
Running on CPU Upgrade

nan commited on
Commit
ea6034c
1 Parent(s): 9134169

feat: add unittests

Browse files
Files changed (1) hide show
  1. tests/src/test_benchmarks.py +9 -0
tests/src/test_benchmarks.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ from src.benchmarks import BenchmarksQA, BenchmarksLongDoc
2
+
3
+
4
+ def test_qabenchmarks():
5
+ print(list(BenchmarksQA))
6
+
7
+
8
+ def test_longdocbenchmarks():
9
+ print(list(BenchmarksLongDoc))