Skip to content

Commit 4131722

Browse files
committed
Fix pytest run for cmd2-ext-test and try to fix doc build
1 parent 3e0adeb commit 4131722

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ jobs:
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828
- name: Install python prerequisites
29-
run: pip install -U --user pip setuptools setuptools-scm sphinx sphinx-autobuild sphinx-rtd-theme
29+
run: pip install -U --user pip setuptools setuptools-scm sphinx sphinx-autobuild sphinx-rtd-theme . plugins/ext_test
3030
- name: Sphinx documentation build
3131
run: python -m sphinx -M html docs docs/_build -nvWT

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ classifiers = [
3535
"Topic :: Software Development :: Libraries :: Python Modules",
3636
]
3737
dependencies = [
38+
"cmd2-ext-test",
3839
"gnureadline; platform_system == 'Darwin'",
3940
"pyperclip",
4041
"pyreadline3; platform_system == 'Windows'",
@@ -333,3 +334,6 @@ dev-dependencies = [
333334
"ruff",
334335
"twine",
335336
]
337+
338+
[tool.uv.sources]
339+
cmd2-ext-test = { path = "plugins/ext_test", editable = true }

0 commit comments

Comments
 (0)