Skip to content

Commit 205e218

Browse files
committed
Fix test running
1 parent c9b07f2 commit 205e218

3 files changed

Lines changed: 13 additions & 2 deletions

File tree

.editorconfig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,7 @@ indent_size = 2
2323
[*.paket.references]
2424
trim_trailing_whitespace = true
2525
indent_size = 2
26+
27+
[*.yml]
28+
trim_trailing_whitespace = true
29+
indent_size = 2

tests/GraphBLAS-sharp.Tests/Main.fs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ namespace GraphBLAS.FSharp.Tests
33
open Expecto
44

55
module Main =
6+
[<Tests>]
7+
let allTests =
8+
testList "All Tests" [
9+
10+
]
611

712
[<EntryPoint>]
8-
let main argv = runTestsInAssembly defaultConfig argv
13+
let main argv =
14+
allTests
15+
|> runTestsWithCLIArgs [] argv
16+

tests/GraphBLAS-sharp.Tests/OperationsTests/VxmTests.fs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ module VxmTests =
7474
MaskCase = enum<MaskType> list.[2]
7575
})
7676

77-
[<Tests>]
7877
let vxmTestsInStandardSemiring =
7978
let stdSemiring = Predefined.FloatSemiring.addMult
8079
ptestList "Float vector-matrix multiplication tests" (

0 commit comments

Comments
 (0)