Skip to content

Instantly share code, notes, and snippets.

@ketch
Last active August 29, 2015 14:09
Show Gist options
  • Save ketch/00e4f4cd33904bbfe6e2 to your computer and use it in GitHub Desktop.
Save ketch/00e4f4cd33904bbfe6e2 to your computer and use it in GitHub Desktop.
Airspeed velocity configuration for clawpack.
{
// The version of the config file format. Do not change, unless
// you know what you are doing.
"version": 1,
// The name of the project being benchmarked
"project": "clawpack",
// The project's homepage
"project_url": "http://www.clawpack.org/",
// The URL of the source code repository for the project being
// benchmarked
"repo": "https://github.com/clawpack/clawpack.git",
// The base URL to show a commit for the project.
"show_commit_url": "http://github.com/clawpack/commit/",
// The Pythons you'd like to test against. If not provided, defaults
// to the current version of Python used to run `asv`.
// "pythons": ["2.7", "3.3"],
// 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 indicates to just test against the default (latest)
// version.
// "matrix": {
// "numpy": ["1.6", "1.7"]
// },
// 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
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment