Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16bc509 commit d4a0b15Copy full SHA for d4a0b15
.circleci/config.yml
@@ -40,13 +40,19 @@ jobs:
40
command: |
41
pip install .[test]
42
pip install codecov
43
+ pip install -r docs/requirements.txt
44
- save_cache:
45
key: deps3-{{ .Branch }}-{{ checksum "setup.py" }}
46
paths:
47
- ".venv"
48
- "/usr/local/bin"
49
- "/usr/local/lib/python3.6/site-packages"
- - 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
54
+ name: Build docs
55
+ command: cd docs/ && make html
56
- run:
57
when: on_success
58
command: bash <(curl -s https://codecov.io/bash)
0 commit comments