-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmkdocs.yml
73 lines (65 loc) · 1.78 KB
/
mkdocs.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# require mkdocs-material 3.x
# Project information
site_name: HttpRunner V1.x 中文使用手册
site_description: HttpRunner V1.x User Documentation
site_author: 'Leo Lee'
# Repository
repo_name: HttpRunner
repo_url: https://github.com/HttpRunner/HttpRunner
edit_uri: ""
# Copyright
copyright: 'Copyright © 2017 - 2018 debugtalk'
# Configuration
theme:
name: 'material'
language: 'zh'
palette:
primary: 'indigo'
accent: 'indigo'
font:
text: 'Roboto'
code: 'Roboto Mono'
# Google Analytics
google_analytics:
- 'UA-114587036-2'
- 'auto'
# Extensions
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- toc:
permalink: true
# extra
extra:
search:
language: 'en, jp'
social:
- type: globe
link: http://debugtalk.com
- type: 'github'
link: 'https://github.com/httprunner'
# index pages
nav:
- 介绍: index.md
- 核心概念:
- 架构图: concept/architecture.md
- 项目文件组织: concept/project-structure.md
- 测试用例组织: concept/testcase-structure.md
- 安装说明: Installation.md
- 快速上手: quickstart.md
- 基础功能:
- 录制生成用例: basic/record.md
- 运行测试: basic/run-test.md
- 测试报告: basic/report.md
- 高级特性:
- hook机制: advanced/request-hook.md
- 环境变量: advanced/dot-env.md
- 参数化数据驱动: advanced/parameters.md
- 测试用例分层: advanced/testcase-layer.md
- Validate & Prettify: advanced/validate-pretty.md
- 信息安全: advanced/security.md
- 性能测试: load-test.md
- 开发扩展: development.md
- 常见问题: FAQ.md
- 相关资料: related-docs.md