We use a slightly modified version of sphinx-argparse (with patch https://github.com/alex-rudakov/sphinx-argparse/pull/136 applied) in order to generate the command reference for each shell command in the manual. As the upstream repository seems unmaintained for ~2 years, let's use the osmocom 'fork' with that above-mentioned patch applied. Change-Id: I134f267cf53c7ecbc8cbfb33a8766d63bf4a8582
30 lines
730 B
Bash
Executable File
30 lines
730 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ ! -d "./pysim-testdata/" ] ; then
|
|
echo "###############################################"
|
|
echo "Please call from pySim-prog top directory"
|
|
echo "###############################################"
|
|
exit 1
|
|
fi
|
|
|
|
virtualenv -p python3 venv --system-site-packages
|
|
. venv/bin/activate
|
|
pip install pytlv
|
|
pip install pyyaml
|
|
pip install cmd2
|
|
|
|
# Execute automatically discovered unit tests first
|
|
python -m unittest discover -v -s tests/
|
|
|
|
# attempt to build documentation
|
|
pip install sphinx
|
|
pip install sphinxcontrib-napoleon
|
|
pip3 install -e 'git+https://github.com/osmocom/sphinx-argparse@master#egg=sphinx-argparse'
|
|
(cd docs && make html)
|
|
|
|
# run the test with physical cards
|
|
cd pysim-testdata
|
|
../tests/pysim-test.sh
|