blob: 4687d7a7e2edde46601f13fbd897a25d5009adea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import os
let
wrappers = @["genotrance/nimarchive", "genotrance/nimgit2"]
rmDir("wrappers")
mkDir("wrappers")
withDir("wrappers"):
for wrapper in wrappers:
let
name = wrapper.extractFilename()
exec "../../tests/timeit git clone https://github.com/" & wrapper
withDir(name):
exec "../../../tests/timeit nimble install -d"
exec "../../../tests/timeit nimble test"
|