make some tests faster (#9413)

* remove duplicated slow test

* smaller `convex hull`

* smaller sleep

* faster `trtree`

* smaller sleep in `tfuturestream`
This commit is contained in:
Miran
2018-10-17 19:46:42 +02:00
committed by Andreas Rumpf
parent 81e33b9d87
commit 95504caa31
5 changed files with 20 additions and 43 deletions

View File

@@ -19,7 +19,7 @@ var fs = newFutureStream[int]()
proc alpha() {.async.} =
for i in 0 .. 5:
await fs.write(i)
await sleepAsync(1000)
await sleepAsync(200)
echo("Done")
fs.complete()