Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d4a0b15

Browse files
committed
add docs build command to the CI
1 parent 16bc509 commit d4a0b15

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.circleci/config.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,19 @@ jobs:
4040
command: |
4141
pip install .[test]
4242
pip install codecov
43+
pip install -r docs/requirements.txt
4344
- save_cache:
4445
key: deps3-{{ .Branch }}-{{ checksum "setup.py" }}
4546
paths:
4647
- ".venv"
4748
- "/usr/local/bin"
4849
- "/usr/local/lib/python3.6/site-packages"
49-
- run: coverage run --include=auth0/v3/*.py --omit=auth0/v3/test/*.py -m unittest discover
50+
- run:
51+
name: Run tests
52+
command: coverage run --include=auth0/v3/*.py --omit=auth0/v3/test/*.py -m unittest discover
53+
- run:
54+
name: Build docs
55+
command: cd docs/ && make html
5056
- run:
5157
when: on_success
5258
command: bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)