86af7eacf1
This will let us implement common functions seen in other lisps, and allow them to be importable, without explicit imports. The goal is to keep this as small as we can; we don't want too much magic. I've added `take' and `drop' as examples of what we can do.
31 lines
785 B
YAML
31 lines
785 B
YAML
language: python
|
|
python:
|
|
- "pypy"
|
|
- "2.7"
|
|
- "3.2"
|
|
- "3.3"
|
|
- "2.6"
|
|
# command to install dependencies
|
|
install:
|
|
- pip install -r requirements.txt --use-mirrors
|
|
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install importlib unittest2 astor --use-mirrors; fi
|
|
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install astor --use-mirrors; fi
|
|
- if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then pip install astor --use-mirrors; fi
|
|
- python setup.py -q install
|
|
# # command to run tests
|
|
script: nosetests
|
|
notifications:
|
|
email:
|
|
- paultag@gmail.com
|
|
irc:
|
|
channels:
|
|
- "irc.freenode.net#woo-city-commits"
|
|
- "irc.freenode.net#hy"
|
|
on_success: change
|
|
on_failure: change
|
|
use_notice: false
|
|
# blacklist
|
|
branches:
|
|
except:
|
|
- debian
|