This repository was archived by the owner on Sep 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathaction.yml
More file actions
54 lines (44 loc) · 1.36 KB
/
action.yml
File metadata and controls
54 lines (44 loc) · 1.36 KB
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
name: "nbmake"
author: "treebeardtech"
description: "Test notebooks"
inputs:
notebooks:
description: "Newline-delimited list of glob patterns of ipynb files to test"
required: false
default: "**/*ipynb"
ignore:
description: >
Newline-delimited list of glob patterns of ipynb files to ignore. This is not the same as pytest `glob-ignore`.
Read src/main.ts for details.
required: false
default: ""
workdir:
description: "workdir that pytest --nbmake is called from"
required: false
default: "."
path-output:
description: "Create an html report to `{path_output}_build/html`"
required: false
overwrite:
description: >
Write notebooks back into the repo directory.
This allows you to commit them to the repo or run additional build tools on the outputs e.g. jupyter-book"
required: false
default: "false"
verbose:
description: "Show debug information"
required: false
default: "false"
extra-pytest-args:
description: "Newline-delimited list of pytest args"
required: false
default: ""
open-usage-logging:
description: >
Provide usage metadata to treebeardtech when used in *open source repos*.
This allows me to fix issues without you reporting them.
required: false
default: "true"
runs:
using: "node12"
main: "dist/index.js"