Skip to content

Commit

Permalink
[tests] disable one run of the numpy ⇔ nim interop test case
Browse files Browse the repository at this point in the history
  • Loading branch information
Vindaar committed Jun 16, 2024
1 parent 463ee26 commit 201ddcb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/tnumpyarrays.nim
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ proc test(arg: tuple[s: string]) =


when isMainModule:
test((s: "toTensor, toNdArray in main thread"))
#test((s: "toTensor, toNdArray in main thread"))
## XXX: Running both is currently broken, due to the python interpreter
## being in a bad state after one?
var thr: Thread[tuple[s: string]]
createThread(thr, test, (s: "toTensor, toNdArray in external thread"))
joinThread(thr)

0 comments on commit 201ddcb

Please sign in to comment.