node-red-nodes/.travis.yml

32 lines
1.3 KiB
YAML
Raw Normal View History

2015-07-22 14:12:30 +02:00
sudo: false
language: node_js
matrix:
# allow_failures:
# - node_js: 16
include:
2021-04-25 17:17:10 +02:00
- node_js: 16
2020-05-03 17:01:04 +02:00
- node_js: 14
2019-04-24 15:07:11 +02:00
- node_js: 12
2020-10-19 23:38:31 +02:00
# - python: 2.7
# language: python
# before_script: pip install flake8
# script: flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
- python: 3.7
language: python
dist: xenial # required for Python 3.7 (travis-ci/travis-ci#9069)
sudo: required # required for Python 3.7 (travis-ci/travis-ci#9069)
before_script: pip install flake8
script: flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
2018-08-15 22:50:59 +02:00
before_install:
- npm i -g npm
before_script:
# Remove the './node_modules/.bin:' entry, see https://github.com/travis-ci/travis-ci/issues/8813
- export PATH=`echo ${PATH} | sed -re 's,(^|:)(./)?node_modules/.bin($|:),\1,'`
2020-10-19 22:33:50 +02:00
- npm install -g nyc grunt-cli coveralls
- npm install node-red
script:
2020-10-19 22:33:50 +02:00
# - istanbul cover grunt --report lcovonly && istanbul report text && ( cat coverage/lcov.info | $(npm get prefix)/bin/coveralls || true ) && rm -rf coverage
2020-10-19 23:30:36 +02:00
# - nyc --check-coverage --reporter=text --reporter=lcovonly --reporter=html grunt
# - nyc grunt && rm -rf coverage .nyc_output
2020-10-19 23:42:25 +02:00
- nyc grunt && nyc report --reporter=text-lcov | coveralls