Fix tests on Nim 1.6.12

Ignore the nimble.lock at the root level when running tests
This commit is contained in:
Mark Spanbroek 2023-06-21 16:19:09 +02:00 committed by markspanbroek
parent c8d324cfa6
commit b551eb3705
3 changed files with 3 additions and 3 deletions

View File

@ -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"

View File

@ -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"

View File

@ -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"