Skip to content
This repository was archived by the owner on Jan 12, 2025. It is now read-only.

Commit b38022a

Browse files
[Bug]: latest version of mkdocs feature fails with babel error (#542)
1 parent 26a6108 commit b38022a

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

src/mkdocs/devcontainer-feature.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "mkdocs",
3-
"version": "2.0.17",
3+
"version": "2.0.18",
44
"name": "MkDocs (via pipx)",
55
"documentationURL": "http://github.com/devcontainers-contrib/features/tree/main/src/mkdocs",
66
"description": "MkDocs is a fast, simple and downright gorgeous static site generator that's geared towards building project documentation.",
@@ -25,5 +25,6 @@
2525
"installsAfter": [
2626
"ghcr.io/devcontainers-contrib/features/pipx-package",
2727
"ghcr.io/devcontainers/features/python"
28-
]
28+
],
29+
"containerEnv" : {"TZ": "UTC"}
2930
}

test/mkdocs/scenarios.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,11 @@
44
"features": {
55
"mkdocs": {}
66
}
7+
},
8+
"test_ubuntu": {
9+
"image": "mcr.microsoft.com/vscode/devcontainers/base:ubuntu-22.04",
10+
"features": {
11+
"mkdocs": {}
12+
}
713
}
814
}

test/mkdocs/test_ubuntu.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash -i
2+
3+
set -e
4+
5+
source dev-container-features-test-lib
6+
7+
check "mkdocs --version" mkdocs --version
8+
9+
reportResults

0 commit comments

Comments
 (0)