summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorThais Siqueira <thais.siqueira@gmail.com>2016-03-11 10:57:34 -0300
committerThais Siqueira <thais.siqueira@gmail.com>2016-03-11 10:57:34 -0300
commit0313e643e30cfe202a100a0b69e7ff3c3875fff5 (patch)
tree208f5e6a4e9829f0f6abbc88ef2e48e3dc98e329 /Vagrantfile
parent62ff59cbbb2aa4c4af378b6d0fc9dd853c8867e3 (diff)
Update locust test to run after xsrf token implementation.
- Adds port 8089 to vagrant file to be able to run inside vm. - Update requests version to 2.4.1, the minimum required version by locust. - Adds the xsrf token on locust post request headers. Issue #213
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile
index ba925079..828382b9 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -30,5 +30,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.provider "virtualbox" do |v, override|
v.memory = 1024
override.vm.network :forwarded_port, guest: 3333, host: 3333 # do NOT add host_ip in this line. It is not necessary
+ override.vm.network :forwarded_port, guest: 8089, host: 8089
end
end