Fix tests on Nim 1.6.12
Ignore the nimble.lock at the root level when running tests
This commit is contained in:
parent
c8d324cfa6
commit
b551eb3705
|
@ -6,4 +6,4 @@ license = "MIT"
|
|||
requires "chronos"
|
||||
|
||||
task test, "Runs the test suite":
|
||||
exec "nim c -f -r test.nim"
|
||||
exec "nim c -f -r --skipParentCfg test.nim"
|
||||
|
|
|
@ -4,4 +4,4 @@ description = "Asynctest tests for std/unittest and std/asyncdispatch"
|
|||
license = "MIT"
|
||||
|
||||
task test, "Runs the test suite":
|
||||
exec "nim c -f -r test.nim"
|
||||
exec "nim c -f -r --skipParentCfg test.nim"
|
||||
|
|
|
@ -7,4 +7,4 @@ requires "unittest2"
|
|||
requires "chronos"
|
||||
|
||||
task test, "Runs the test suite":
|
||||
exec "nim c -f -r test.nim"
|
||||
exec "nim c -f -r --skipParentCfg test.nim"
|
||||
|
|
Loading…
Reference in New Issue