mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-07-12 17:57:46 +00:00
* Update .travis.yml * Add status badge to README.md * Update .travis.yml to change directory before install R
18 lines
366 B
YAML
18 lines
366 B
YAML
matrix:
|
|
include:
|
|
- language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.6"
|
|
|
|
install:
|
|
- pip install --upgrade pip
|
|
- pip install -U -r python/requirements.txt
|
|
|
|
script:
|
|
- cd python && python setup.py develop test
|
|
- language: R
|
|
sudo: false
|
|
cache: packages
|
|
before_install:
|
|
- cd R
|