forked from uwcse440/web-cse440-wi17
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
39 lines (30 loc) · 768 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# This file compiled from .travis.yml.in
sudo: false
language: python
python:
- "3.5.2"
cache:
pip: true
directories:
- node_modules
- /home/travis/.rvm/gems
install:
# Install NodeJS
- nvm install 4.5.0
# Install Python dependencies
- python -m pip install --upgrade pip==8.1.1
- python -m pip install -r requirements3.txt
# Install Ruby
- rvm install 2.3.3
- rvm @global do gem install bundler -v 1.13.6
- |
bundler_uninstall=$( rvm @global do gem list ^bundler$ -i -v "!=1.13.6" )
if [ "$bundler_uninstall" == "true" ]
then
rvm @global do gem uninstall bundler -v "!=1.13.6"
fi
- rvm use 2.3.3 --default
# Invoke will get our other dependencies
- invoke update_dependencies
script:
- nosetests