mirror of
https://github.com/logos-storage/logos-storage-nim-dht.git
synced 2026-01-02 13:33:08 +00:00
* bumps bearssl * updates version of bearssl in lockfiles * fixes that checksum * attempt to bump various dependencies * updates asynctest version tag * asynctest sha * bumps to working version of nim-datastore * adjusts asynctest imports for chronos * chronos checksum * checksum for datastore * libp2p version tag * libp2p checksum * moves libp2p from codex-branch to latest master * libp2p checksum * splits the test dependencies from the dev dependencies (example nim-ethers) * sets path * pathing in tests * oops wrong version * adds build.nims to installfiles for test module * attempt to fix import paths * bumps nim-datastore * datastore checksum * greatly simplify CI * fixes asynctest import * builds parallel tests before running * bumps datastore * turns nim-stable back off * pins nim-datastore version * bumps checkout to v4 * Review comment by Mark Co-authored-by: markspanbroek <mark@spanbroek.net> * Review comment by Mark Co-authored-by: markspanbroek <mark@spanbroek.net> --------- Co-authored-by: markspanbroek <mark@spanbroek.net>
23 lines
628 B
Nim
23 lines
628 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 dht/test_providers.nim",
|
|
"nim c -r --hints:off --verbosity:0 dht/test_providermngr.nim",
|
|
]
|
|
when defined(testsPart2) or defined(testsAll):
|
|
cmds.add [
|
|
"nim c -r --hints:off --verbosity:0 discv5/test_discoveryv5.nim",
|
|
"nim c -r --hints:off --verbosity:0 discv5/test_discoveryv5_encoding.nim",
|
|
]
|
|
|
|
echo "Running Test Commands: ", cmds
|
|
|
|
quit execProcesses(cmds)
|