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.
20 lines
362 B
20 lines
362 B
# Config file for automatic testing at travis-ci.org
|
|
dist: xenial
|
|
language: python
|
|
python:
|
|
- 3.6
|
|
- 3.7
|
|
|
|
env:
|
|
- INSTALL_NODE_VERSION=8
|
|
- INSTALL_NODE_VERSION=10
|
|
- INSTALL_NODE_VERSION=12
|
|
|
|
install:
|
|
- pip install cookiecutter
|
|
- pip install invoke==1.2.0
|
|
- nvm install $INSTALL_NODE_VERSION
|
|
- nvm use $INSTALL_NODE_VERSION
|
|
|
|
script:
|
|
- invoke test
|
|
|