diff --git a/Vagrantfile b/Vagrantfile index d442cea02e844f9b88cd6202bb90a23804e34d43..5000998ad402fe6e78497e65798c49602b8db610 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -2,14 +2,14 @@ # vi: set ft=ruby : Vagrant.configure(2) do |config| config.vm.box = "debian/jessie64" + config.vm.synced_folder ".", "/vagrant", disabled: true if Vagrant.has_plugin?("vagrant-gatling-rsync") - config.gatling.latency = 2.5 - config.gatling.time_format = "%H:%M:%S" config.gatling.rsync_on_startup = true end config.vm.synced_folder ".", "/home/vagrant/python-unshare", type: "rsync", - rsync__exclude: [".cache", ".tox", "*.egg-info", "*.swp", ".DS_Store", ".idea"] + auto: true, + rsync__exclude: [".cache", ".tox", "*.egg-info", "*.swp", ".DS_Store", ".idea", "*.pyc", "__pycache__"] config.vm.provision "shell", inline: <<-SHELL sudo apt-get update sudo apt-get install -yf build-essential linux-libc-dev python-pip python3-pip git