15 lines
211 B
YAML
15 lines
211 B
YAML
language: python
|
|
|
|
python:
|
|
- '2.7'
|
|
- '3.3'
|
|
- '3.4'
|
|
- 'pypy'
|
|
- 'nightly'
|
|
|
|
install:
|
|
- python -c "import setuptools; print(setuptools.__version__)"
|
|
|
|
script:
|
|
- TEST_WITH_INTERNET=1 python setup.py test
|