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