mirror of
https://github.com/status-im/nim-libp2p-dht.git
synced 2025-02-23 01:28:09 +00:00
* make encryption scheme explicit * supress compiler noise * make `nimble install` without `-d` work * move `libp2p_pki_schemes=secp256k1` to config.nims * fix include
23 lines
652 B
Nim
23 lines
652 B
Nim
# import
|
|
# ./dht/[test_providers, test_providermngr],
|
|
# ./discv5/[test_discoveryv5, test_discoveryv5_encoding]
|
|
|
|
import osproc
|
|
|
|
var cmds: seq[string]
|
|
|
|
when defined(testsPart1) or defined(testsAll):
|
|
cmds.add [
|
|
"nim c -r --hints:off --verbosity:0 tests/dht/test_providers.nim",
|
|
"nim c -r --hints:off --verbosity:0 tests/dht/test_providermngr.nim",
|
|
]
|
|
when defined(testsPart2) or defined(testsAll):
|
|
cmds.add [
|
|
"nim c -r --hints:off --verbosity:0 tests/discv5/test_discoveryv5.nim",
|
|
"nim c -r --hints:off --verbosity:0 tests/discv5/test_discoveryv5_encoding.nim",
|
|
]
|
|
|
|
echo "Running Test Commands: ", cmds
|
|
|
|
quit execProcesses(cmds)
|