forked from git-town/git-town
-
Notifications
You must be signed in to change notification settings - Fork 0
/
text-run.yml
47 lines (37 loc) · 1.38 KB
/
text-run.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
# white-list for files to test
# This is a glob expression, see https://github.com/isaacs/node-glob#glob-primer
# The folder "node_modules" is already excluded.
# To exclude the "vendor" folder: '{,!(vendor)/**/}*.md'
files: "**/*.md"
# black-list of files not to test
# applied after the white-list above.
exclude: ["vendor/"]
# the formatter to use (detailed, dot, progress, summary)
format: dot
# regex patterns for link targets to ignore
ignoreLinkTargets: []
# Define which folders of your Markdown source get compiled to HTML
# and published under a different URL path.
#
# In this example, the public URL "/blog/foo"
# would be hosted as "post/foo.md":
# publications:
# - localPath: /posts/
# publicPath: /blog
# publicExtension: ''
# Name of the default filename in folders.
# If you set this, and a link points to a folder,
# Text-Runner assumes the link points to the default file in that folder.
# defaultFile: index.md
# prefix that makes anchor tags active regions
regionMarker: type
# whether to display/emit skipped activities
showSkipped: false
# whether to run the tests in an external temp directory,
# uses ./tmp if false,
# you can also provide a custom directory path here
systemTmp: true
# whether to verify online files/links (warning: this makes tests flaky)
online: false
# whether to delete all files in the workspace folder before running the tests
emptyWorkspace: true