nim-eth-p2p/eth_p2p.nimble

37 lines
955 B
Plaintext
Raw Normal View History

2018-03-28 00:17:01 +00:00
mode = ScriptMode.Verbose
packageName = "eth_p2p"
2018-03-28 00:17:01 +00:00
version = "1.0.0"
author = "Status Research & Development GmbH"
description = "Ethereum P2P library"
license = "MIT"
2018-03-28 01:52:53 +00:00
skipDirs = @["tests", "Nim"]
2018-03-28 00:17:01 +00:00
2018-03-30 14:06:46 +00:00
requires "nim > 0.18.0",
"rlp >= 1.0.1",
2018-05-10 12:51:33 +00:00
"nimcrypto",
"secp256k1 >= 0.1.0",
"eth_keys",
"ranges",
2018-05-10 12:51:33 +00:00
"stint",
"byteutils",
2018-07-10 09:54:27 +00:00
"chronicles",
"asyncdispatch2",
"eth_common",
"snappy",
2018-11-02 13:45:57 +00:00
"package_visible_types",
"serialization",
"json_serialization"
2018-07-30 21:37:56 +00:00
2018-11-02 13:45:57 +00:00
proc runTest(name: string, defs = "", lang = "c") =
exec "nim " & lang & " " & defs & " -d:testing --experimental:ForLoopMacros -r tests/" & name
2018-03-30 13:56:56 +00:00
task test, "Runs the test suite":
2018-11-27 23:52:22 +00:00
runTest "all_tests"
runTest "testenode"
2018-05-08 14:11:34 +00:00
runTest "tdiscovery"
2018-05-10 12:51:33 +00:00
runTest "tserver"
2018-11-02 13:45:57 +00:00
runTest "tserver", "-d:useSnappy"
runTest "tshh_connect"
2018-11-27 23:52:22 +00:00
runTest "tshh_connect_mocked"