Skip to content

Commit dc28758

Browse files
committed
Added PR to build docs
1 parent 3466834 commit dc28758

3 files changed

Lines changed: 10 additions & 4 deletions

File tree

.github/workflows/ci-tests-drafts.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
python --version
2626
python -m pip install --upgrade pip
2727
pip install -e .
28-
pip install -e .[test]
28+
pip install -e .[dev]
2929
pip install pytest pytest-cov
3030
- name: Register Jupyter Kernel
3131
run: |
@@ -38,3 +38,7 @@ jobs:
3838
with:
3939
fail_ci_if_error: true
4040
token: ${{ secrets.CODECOV_TOKEN }}
41+
- name: "Build docs"
42+
working-directory: "docs"
43+
run: |
44+
make html

.github/workflows/ci-tests.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
python --version
3131
python -m pip install --upgrade pip
3232
pip install -e .
33-
pip install -e .[test]
33+
pip install -e .[dev]
3434
pip install pytest pytest-cov
3535
- name: Register Jupyter Kernel
3636
run: |
@@ -43,3 +43,7 @@ jobs:
4343
with:
4444
fail_ci_if_error: true
4545
token: ${{ secrets.CODECOV_TOKEN }}
46+
- name: "Build docs"
47+
working-directory: "docs"
48+
run: |
49+
make html

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ dev = [
5151
"pandoc",
5252
"pre-commit",
5353
"tox",
54-
]
55-
test = [
5654
"nbclient",
5755
"nbformat",
5856
"ipykernel",

0 commit comments

Comments
 (0)