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.
34 lines
375 B
INI
34 lines
375 B
INI
[tox]
|
|
envlist = py27,pypy,py32,py33,py26,flake8
|
|
[testenv]
|
|
commands = nosetests
|
|
deps =
|
|
nose
|
|
setuptools
|
|
|
|
[testenv:pypy]
|
|
commands = nosetests
|
|
deps =
|
|
astor
|
|
nose
|
|
setuptools
|
|
|
|
[testenv:py27]
|
|
commands = nosetests
|
|
deps =
|
|
astor
|
|
nose
|
|
setuptools
|
|
|
|
[testenv:py26]
|
|
deps =
|
|
astor
|
|
nose
|
|
setuptools
|
|
unittest2
|
|
importlib
|
|
|
|
[testenv:flake8]
|
|
deps = flake8
|
|
commands = flake8 hy bin tests
|