better travis

This commit is contained in:
Sebastian Bachmann 2018-02-16 17:56:33 +01:00
parent f81bef8ddc
commit 641fb0501f

View File

@ -23,12 +23,13 @@ script:
- nosetests --with-coverage --with-timer --timer-top-n 50
# Testing the scripts - crude ;)
- for f in `find -name \*.apk`; do
./androaxml.py -i $f > /dev/null;
./androaxml.py -i $f -o /dev/null;
./androarsc.py -i $f > /dev/null;
./androarsc.py -i $f -o /dev/null;
./androarsc.py -i $f -t string > /dev/null;
./androarsc.py -i $f -t string -o /dev/null;
echo "testing $f"
time ./androaxml.py -i $f > /dev/null;
time ./androaxml.py -i $f -o /dev/null;
time ./androarsc.py -i $f > /dev/null;
time ./androarsc.py -i $f -o /dev/null;
time ./androarsc.py -i $f -t string > /dev/null;
time ./androarsc.py -i $f -t string -o /dev/null;
done
- python setup.py build_sphinx