We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dc3a11 commit 6d10b59Copy full SHA for 6d10b59
1 file changed
.travis.yml
@@ -9,10 +9,15 @@ env:
9
- DJANGO_VERSION=1.8.1
10
11
install:
12
+ # Install node 6 (current LTS as of January 2017)
13
+ - "rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install 6"
14
+ # Install latest npm
15
- "npm install -g npm"
16
+ # Install node deps for render server
17
- "cd tests"
18
- "npm install"
19
- "cd .."
20
+ # Setup python packages
21
- "pip install Django==$DJANGO_VERSION"
22
- "pip install -r requirements.txt"
23
0 commit comments