Delete .travis.yml

This commit is contained in:
Vicky Steeves 2017-05-31 19:02:21 +00:00
parent 45997c50b1
commit fab57ab5d8
1 changed files with 0 additions and 14 deletions

View File

@ -1,14 +0,0 @@
language: python
python: "3.5"
# command to install dependencies
install: pip install 'Nikola[extras]'
# command to run tests
script: |
nikola build &&
if [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ]; then
virtualenv -p python2.7 /tmp/venv &&
. /tmp/venv/bin/activate &&
pip install ghp-import &&
ghp-import -n output &&
git push -qf https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages >/dev/null 2>&1
fi