We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6673aae commit 79f890aCopy full SHA for 79f890a
tests/unit/mainTest.ml
@@ -14,10 +14,12 @@ let all_tests =
14
(* etc *)
15
"domaintest" >::: QCheck_ounit.to_ounit2_test_list Maindomaintest.all_testsuite;
16
IntOpsTest.tests;
17
+ (* SparseMatrixImplementationTest.tests; *) (* Uncomment this to add the sparse matrix tests to all tests *)
18
]
19
20
let subset_tests = "" >::: [SparseMatrixImplementationTest.tests]
21
22
let () =
23
print_string "\027[0;1munit: \027[0;0;00m";
- run_test_tt_main subset_tests
24
+ run_test_tt_main subset_tests (* Remove this and uncomment the line below to run all tests.*)
25
+ (* run_test_tt_main all_tests *)
0 commit comments