mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-14 22:49:23 +01:00
rm .travis.runonce.bash
It was supposed to perform tests that are only wanted to run once and it was also supposed to be possible to run outside of Travis, but no one ever looks in it at Travis and no one runs it manually. Even I use `sandbox/check_trans.py`.
This commit is contained in:
parent
73edd9bd3c
commit
dada007e61
@ -1,30 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
# This script does the things that we want Travis to do only once, not in
|
||||
# every possible build.
|
||||
|
||||
# Care about exit status
|
||||
set -x
|
||||
set -e
|
||||
|
||||
# Set environment
|
||||
# Which branch are we on?
|
||||
branch=$(git branch | sed -n -e 's/^\* \(.*\)/\1/p')
|
||||
|
||||
# Install requirements required for only this file.
|
||||
if [[ $TRAVIS == "true" ]]; then
|
||||
sudo pip install sphinx msgcheck --upgrade
|
||||
else
|
||||
pip install sphinx msgcheck --upgrade --user
|
||||
fi
|
||||
|
||||
# Check translations
|
||||
sandbox/check_trans.py plugins/
|
||||
sandbox/check_trans.py --core
|
||||
msgcheck -flwW locales/*.po || true
|
||||
msgcheck -flwW plugins/*/*/*.po || true
|
||||
|
||||
# Check documentation
|
||||
cd docs
|
||||
# Add -W to spinx-build when the documentation doesn't error!
|
||||
sphinx-build -n -b html -d _build/doctrees . _build/html
|
||||
cd ..
|
@ -15,8 +15,6 @@ script:
|
||||
- echo $TRAVIS_PYTHON_VERSION
|
||||
- python setup.py install
|
||||
- supybot-test test --plugins-dir=./build/lib*/supybot/plugins/ --no-network --disable-multiprocessing --exclude=./build/lib*/supybot/plugins/Scheduler --exclude=./build/lib*/supybot/plugins/Filter
|
||||
after_success:
|
||||
- if [ "$TRAVIS_PYTHON_VERSION" = "3.4" ]; then bash .travis.runonce.bash;fi
|
||||
notifications:
|
||||
email: false
|
||||
matrix:
|
||||
|
Loading…
Reference in New Issue
Block a user