-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplugin.yml
52 lines (49 loc) · 1.89 KB
/
plugin.yml
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
name: Julia Test
description: Instantiates and tests a Julia project.
author: https://github.com/maleadt
requirements: [julia]
configuration:
properties:
## Runtime testing options
# Whether to actually run the Julia test suite (defaults to `true`)
run_tests:
type: boolean
# Sets the project path to be tested, defaults to `"."`
project:
type: string
# Determine what package in the project to test
package:
type: string
# Whether to run within `rr` and upload a trace, takes one of the following options:
# - "never": `rr` is never used (this is the default)
# - "always": `rr` is used and a trace is unconditionally uploaded
# - "error": `rr` is used and a trace is uploaded only if testing fails.
upload_rr_trace:
type: string
## Project instantiation options
# Whether to update the registry before instantiating, defaults to `"true"`.
update_registry:
type: boolean
# Extra registries to add before instantiating as a comma-separated list
extra_registries:
type: string
# Use SSH when instantiating the projects (runs `Pkg.setprotocol!(protocol="ssh")`), defaults to `false`
use_ssh:
type: boolean
# The path to the Manifest to instantiate, if different from the default
custom_manifest:
type: string
## Kwargs that get passed to `Pkg.test()`
# Whether to upload coverage (passes `coverage` to `Pkg.test()`), defaults to `true`
coverage:
type: boolean
# Extra julia args (passes `julia_args` to `Pkg.test()`), defaults to `""`
julia_args:
type: string
# Extra test args (passes `test_args` to `Pkg.test()`), defaults to `""`
test_args:
type: string
# Whether to allow Pkg to automatically re-resolve manifests if used with an incompatible Julia version, defaults to `true`
allow_reresolve:
type: boolean
additionalProperties: false