2014-01-23 16:20:51 -08:00
|
|
|
language: python
|
2014-08-06 14:01:59 -07:00
|
|
|
|
2014-01-23 16:20:51 -08:00
|
|
|
python:
|
2014-03-04 18:12:36 -08:00
|
|
|
- "2.6"
|
2014-03-04 18:49:36 -08:00
|
|
|
- "2.7"
|
2014-08-06 14:01:59 -07:00
|
|
|
|
2014-12-23 12:39:33 -08:00
|
|
|
os:
|
|
|
|
- linux
|
2015-11-25 12:18:56 +00:00
|
|
|
|
2015-11-25 12:49:59 +00:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.cache/pip
|
|
|
|
- node_modules
|
2014-12-23 12:39:33 -08:00
|
|
|
|
|
|
|
sudo: false
|
|
|
|
|
2014-01-23 16:20:51 -08:00
|
|
|
install:
|
2014-03-04 19:36:29 -08:00
|
|
|
- "pip install 'argparse>=1.2.1' --allow-all-external"
|
2015-04-17 09:52:32 -07:00
|
|
|
- pip install boto certauth
|
2015-10-22 17:41:42 -07:00
|
|
|
- pip install git+https://github.com/esnme/ultrajson.git
|
2014-02-25 15:30:16 -08:00
|
|
|
- python setup.py -q install
|
2014-03-04 19:36:29 -08:00
|
|
|
- pip install coverage pytest-cov coveralls --use-mirrors
|
2015-11-25 11:44:04 +00:00
|
|
|
- npm install
|
2014-08-06 14:01:59 -07:00
|
|
|
|
2014-12-23 12:39:33 -08:00
|
|
|
script:
|
2015-11-25 11:44:04 +00:00
|
|
|
- python setup.py test
|
|
|
|
- cd karma-tests && make test
|
2014-02-24 23:43:32 -08:00
|
|
|
|
|
|
|
after_success:
|
|
|
|
coveralls
|