summaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
authorJoris Roovers <jroovers@cisco.com>2016-12-02 12:31:59 +0100
committerJoris Roovers <jroovers@cisco.com>2016-12-02 12:31:59 +0100
commit10802a0578992ddfcf0521d0201a09f850e2508d (patch)
tree5f5467a2a8ca48db8e8d17c047c519e884d23acf /Vagrantfile
parentd68fe1163203c0408ce72deec325c036ab773c69 (diff)
Pylint support for all python environments
Gitlint is now linted for all supported python versions. Additionally, did some refactoring to run_tests.sh so that we can more easily install and uninstall specific python environments (vs. all at once).
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 357758c..7b1e54e 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -11,8 +11,8 @@ sudo apt-get install -y python2.6-dev python2.7-dev python3.3-dev python3.4-dev
sudo apt-get install -y python-virtualenv git ipython python3-pip silversearcher-ag
sudo pip3 install virtualenv
-./run_tests.sh --remove-virtualenvs
-./run_tests.sh --install-virtualenvs
+./run_tests.sh --uninstall --envs all
+./run_tests.sh --install --envs all
grep 'cd /vagrant' /home/vagrant/.bashrc || echo 'cd /vagrant' >> /home/vagrant/.bashrc
grep 'source .venv27/bin/activate' /home/vagrant/.bashrc || echo 'source .venv27/bin/activate' >> /home/vagrant/.bashrc