rm update travis script, this can be done by hand

This commit is contained in:
Tony Narlock 2017-12-11 07:15:06 -06:00
parent 749aa09ff2
commit 1f8e9f9fb3

View file

@ -1,13 +0,0 @@
#!/bin/sh
# Updates .travis.yml envs based on tox.ini configuration.
# Removing old environment list
cp ./.travis.yml ./.travis.yml.bak
cat ./.travis.yml.bak | grep -v "^ - TOXENV=" > ./.travis.yml
# Inserting envs based on list generated by tox
for env_name in $(tox --listenvs | sort -r); do
sed -i "/^env:$/a\
\ \ - TOXENV=${env_name}" ./.travis.yml;
done