mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:40:05 +08:00
24 lines
322 B
YAML
24 lines
322 B
YAML
language: python
|
|
|
|
sudo: required
|
|
|
|
cache:
|
|
- pip
|
|
- npm
|
|
|
|
env:
|
|
- PATH="$PATH:/home/travis/build/sbdchd/neoformat/test/bin"
|
|
|
|
python:
|
|
- "3.6"
|
|
|
|
before_install:
|
|
- nvm install $NODE_VERSION
|
|
|
|
install:
|
|
- ./test/install.sh
|
|
- pip install -r test/requirements.txt
|
|
|
|
script:
|
|
- cd test && pytest -v test.py
|