Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@ jobs:
executor: python/default
steps:
- checkout
- run:
name: Upgrade pip and setuptools
command: python -m ensurepip --upgrade || true && python -m pip install --upgrade pip setuptools
- run:
name: Install Python dependencies
command: |
python -m pip install --user \
-r docs-requirements.txt
python -m pip install -r docs-requirements.txt
- run:
name: install module
command: python -m pip install --user -ve .
command: python -m pip install -ve .
- run:
name: Build docs
command: cd docs/ && make html
Expand Down
Loading