-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_tests_config.json
33 lines (33 loc) · 1.09 KB
/
test_tests_config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[
{
"framework": "brownie",
"python_venv_path": "/path/to/ackee/brownie_venv",
"command": "brownie test brownie_tests --network",
"project_path": "/path/to/ackee/v3-core",
"compile_command": "brownie compile",
"networks": ["anvil", "development", "hardhat"]
},
{
"framework": "ape",
"python_venv_path": "/path/to/ackee/ape_venv",
"command": "ape test ape_tests --network",
"project_path": "/path/to/ackee/v3-core",
"compile_command": "ape compile",
"networks": ["ethereum:local:foundry", "ethereum:local:ganache", "ethereum:local:hardhat"]
},
{
"framework": "wake",
"python_venv_path": "/path/to/ackee/wake_venv",
"command": "wake test wake_tests",
"project_path": "/path/to/ackee/v3-core",
"compile_command": "wake compile && wake init pytypes",
"networks": ["anvil", "ganache", "hardhat"]
},
{
"framework": "hardhat",
"command": "npx hardhat test hardhat_tests/*.ts --network",
"project_path": "/path/to/ackee/v3-core",
"compile_command": "npx hardhat compile",
"networks": ["anvil", "ganache", "hardhat"]
}
]