-
Notifications
You must be signed in to change notification settings - Fork 0
/
asv.conf.json
83 lines (67 loc) · 2.91 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
// The version of the config file format.
"version": 1,
// The name of the project being benchmarked
"project": "glue-core",
// The project's homepage
"project_url": "http://glueviz.org/",
// The URL or local path of the source code repository for the
// project being benchmarked
"repo": "git://github.com/glue-viz/glue",
// The DVCS being used.
"dvcs": "git",
// The tool to use to create environments.
"environment_type": "conda",
// the base URL to show a commit for the project.
"show_commit_url": "http://github.com/glue-viz/glue/commit/",
// The Pythons you'd like to test against. If not provided, defaults
// to the current version of Python used to run `asv`.
"pythons": ["3.7"],
// The list of conda channel names to be searched for benchmark
// dependency packages in the specified order
"conda_channels": ["glueviz", "defaults"],
// 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. If the package to be tested is only available from
// PyPi, and the 'environment_type' is conda, then you can preface
// the package name by 'pip+', and the package will be installed via
// pip (with all the conda available packages installed first,
// followed by the pip installed packages).
"matrix": {
"numpy": ["1.15"],
"pandas": ["0.23"],
"astropy": ["3.1"],
"matplotlib": ["3.0"],
"qtpy": ["1.5"],
"setuptools": ["40.6"],
"ipython": ["7.2"],
"ipykernel": ["5.1"],
"qtconsole": ["4.4"],
"dill": ["0.2"],
"xlrd": ["1.2"],
"h5py": ["2.9"],
"bottleneck": ["1.2"],
"mpl-scatter-density": ["0.4"],
"nomkl": []
},
// The directory (relative to the current directory) that benchmarks are
// stored in. If not provided, defaults to "benchmarks"
"benchmark_dir": "benchmarks",
// The directory (relative to the current directory) to cache the Python
// environments in. If not provided, defaults to "env"
"env_dir": "env",
// The directory (relative to the current directory) that raw benchmark
// results are stored in. If not provided, defaults to "results".
"results_dir": "results",
// The directory (relative to the current directory) that the html tree
// should be written to. If not provided, defaults to "html".
"html_dir": "html",
// The number of characters to retain in the commit hashes.
"hash_length": 8,
// `asv` will cache results of the recent builds in each
// environment, making them faster to install next time. This is
// the number of builds to keep, per environment.
"build_cache_size": 2,
}