14 lines
202 B
YAML
14 lines
202 B
YAML
before_script:
|
|
- psql -c 'create database sqlalchemy_utils_test;' -U postgres
|
|
|
|
|
|
language: python
|
|
python:
|
|
- 2.6
|
|
- 2.7
|
|
- 3.3
|
|
install:
|
|
- pip install -e ".[test]"
|
|
script:
|
|
- python setup.py test
|