Skip to content

Commit 421a958

Browse files
committed
Fix for ci actions
1 parent f5daf44 commit 421a958

4 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/ci-docs-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
pip install sphinx sphinx-toolbox piccolo-theme
3333
3434
- name: Install alc-ux demo plugin
35-
run: python -m pip install .
35+
run: (cd plugin_template && python -m pip install .)
3636

3737
- name: Build the documentation
3838
run: sphinx-build -b html docs/source/ docs/build/html

.github/workflows/ci-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
pip install sphinx sphinx-toolbox piccolo-theme
3333
3434
- name: Install alc-ux demo plugin
35-
run: python -m pip install .
35+
run: (cd plugin_template && python -m pip install .)
3636

3737
- name: Build the documentation
3838
run: sphinx-build -b html docs/source/ docs/build/html

.github/workflows/ci-testing.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ jobs:
2929
- name: Install the package & requirements
3030
run: |
3131
python -m pip install --upgrade pip
32-
cd plugin_template
33-
pip install .[dev]
32+
(cd plugin_template && python -m pip install .[dev])
3433
3534
- name: Run the test suite \w coverage
3635
if: contains(matrix.python-version, '3.12')

0 commit comments

Comments
 (0)