forked from moorepants/DynamicistToolKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap.sh
More file actions
30 lines (26 loc) · 798 Bytes
/
Copy pathbootstrap.sh
File metadata and controls
30 lines (26 loc) · 798 Bytes
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
#!/usr/bin/env bash
# This works for Ubuntu 13.10, Saucy Salamander.
apt-get update
# installation
apt-get install -y python-setuptools
# main dependencies
apt-get install -y python-numpy python-scipy python-matplotlib python-pandas
# testing
apt-get install -y python-nose python-coverage
# documentation
apt-get install -y python-sphinx python-numpydoc
# Test and install current branch stored on local machine with the VM
cd /vagrant
nosetests -v --with-coverage --cover-package=dtk
python setup.py install
cd docs
make html
# Test and install HEAD of master branch pulled from Github
apt-get install -y git
cd $HOME
git clone https://github.com/moorepants/DynamicistToolKit.git
cd DynamicistToolKit
nosetests -v --with-coverage --cover-package=dtk
python setup.py install
cd docs
make html