You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

35 lines
540 B

language: python
# with enabled SUDO the build goes slower
sudo: false
python:
# - "2.6"
- "2.7"
# - "3.2"
# - "3.3"
# - "3.4"
# - "3.5"
# - "3.5-dev" # 3.5 development branch
# - "nightly" # currently points to 3.6-dev
cache:
pip: true
directories:
- node_modules
- libs
- lib
# command to install dependencies
install:
- pip install --upgrade pip
- npm install
- pip install -r requirements-dev.txt -t ./libs
# command to run tests
script:
- grunt test
- grunt coverage
after_success:
coveralls