Created
May 14, 2014 05:45
-
-
Save vaab/70de4183e95c847e31e5 to your computer and use it in GitHub Desktop.
Travis config to use with ``autogen.sh`` file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: python | |
python: | |
- "3.4" | |
- "3.3" | |
- "2.7" | |
install: ./autogen.sh && python setup.py install && python setup.py develop easy_install "$(./autogen.sh --get-name)[test]" | |
script: | |
- nosetests $(./autogen.sh --get-name) | |
- git reset --hard HEAD ; git clean -d -f ; python setup.py sdist --formats=gztar && pip install "dist/$(./autogen.sh --get-name)-$(./autogen.sh --get-version | tr "_" "-").tar.gz" --upgrade |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment