-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
56 lines (52 loc) · 1.84 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
# Copyright 2023 Jason C. Nucciarone
# See LICENSE file for licensing details.
site_name: cleantest
site_url: https://nuccitheboss.github.io/cleantest/
site_description: |
Documentation for cleantest - a testing framework for developers who need clean testing environments in a hurry.
repo_name: NucciTheBoss/cleantest
repo_url: https://github.com/NucciTheBoss/cleantest
edit_uri: blob/main/docs
theme:
name: material
icon:
repo: fontawesome/brands/github
palette:
primary: black
features:
- navigation.expand
- navigation.tabs
markdown_extensions:
- admonition
- def_list
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
nav:
- Home: 'index.md'
- 'User Guide':
- 'Installation': 'user-guide/installation.md'
- 'Getting started': 'user-guide/getting-started.md'
- 'Test environment providers': 'user-guide/test-env-providers.md'
- 'Using hooks': 'user-guide/hooks.md'
- 'Working with packages':
- 'Charm libraries': 'user-guide/packages/charmlib.md'
- 'Pip': 'user-guide/packages/pip.md'
- 'Snaps': 'user-guide/packages/snaps.md'
- 'Working with artifacts':
- 'Directories': 'user-guide/artifacts/directory.md'
- 'Files': 'user-guide/artifacts/file.md'
- 'Using different Linux distributions': 'user-guide/using-diff-linux-distro.md'
- 'Parallel testing': 'user-guide/parallelization.md'
- Tutorials:
- 'Using a mini-HPC cluster to test batch jobs': 'tutorials/using-a-mini-hpc-cluster.md'
- Reference: 'reference/coming-soon.md'
- News: 'news/news.md'
- Community: 'https://github.com/NucciTheBoss/cleantest/discussions'