You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit uses cargo test flags to emit test results in
JSON format, then use cargo2junit tooling to convert
JSON output into junit xml file. The cargo test flags are
unstable and work only on nightly, but api_generator and
yaml_test_runner require nightly channel because rustfmt-nightly
is used.
Determine branch/commit, test suite and version
from running Elasticsearch instance.
.help("The git branch in the Elasticsearch repository from which to download yaml tests")
50
-
.required(true)
51
-
.default_value("master")
52
-
.takes_value(true))
53
46
.arg(Arg::with_name("token")
54
47
.short("t")
55
48
.long("token")
56
49
.value_name("TOKEN")
57
50
.help("The GitHub access token. Increases the rate limit to be able to download all yaml tests. Must be specified if not passed through environment variable")
58
51
.required(false)
59
52
.takes_value(true))
53
+
.arg(Arg::with_name("url")
54
+
.short("u")
55
+
.long("url")
56
+
.value_name("ELASTICSEARCH_URL")
57
+
.help("The url of a running Elasticsearch cluster. Used to determine the version, test suite and branch to use to compile tests")
0 commit comments