File: test_ref_doc.sh

package info (click to toggle)
azure-cli 2.81.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,328,780 kB
  • sloc: python: 1,901,859; sh: 1,341; makefile: 404; cs: 145; javascript: 74; sql: 37; xml: 21
file content (24 lines) | stat: -rwxr-xr-x 430 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env bash

set -ev

wd=`cd $(dirname $0); pwd`

. $wd/artifacts.sh

ls -la $share_folder/build

ALL_MODULES=`find $share_folder/build/ -name "*.whl"`

pip install -e ./tools
[ -d privates ] && pip install -qqq privates/*.whl
pip install $ALL_MODULES

pip install sphinx==1.6.7 Jinja2==3.0.3
echo "Installed."

cd doc/sphinx; python ./__main__.py

python $wd/test_help_doc_arguments.py "./_build/xml/ind.xml"

echo "OK."