-
Notifications
You must be signed in to change notification settings - Fork 105
/
asv.conf.json
34 lines (27 loc) · 927 Bytes
/
asv.conf.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
34
{
"version": 1,
"project": "oggm",
"project_url": "https://oggm.org/",
"repo": ".",
"branches": ["master"],
"dvcs": "git",
"show_commit_url": "https://github.com/OGGM/oggm/commit/",
"hash_length": 8,
"plugins": [".asv_oggm_plugin"],
"environment_type": "oggm_conda",
"install_timeout": 1800,
"install_command": ["python -m pip install --upgrade {wheel_file}"],
"pythons": ["3.6", "3.7"],
// The matrix of dependencies to test. Each key is the name of a
// package (in PyPI) and the values are version numbers. An empty
// list or empty string indicates to just test against the default
// (latest) version. null indicates that the package is to not be
// installed.
"matrix": {
"numpy": ["1.16", ""]
},
"benchmark_dir": "benchmarks",
"env_dir": ".asv/env",
"results_dir": ".asv/results",
"html_dir": ".asv/html"
}