Questions tagged [taurus]

Automation-friendly framework for Continuous Testing using JMeter, Selenium and other tools.

Taurus is a project on github under Blazemeter.

Official Website: https://gettaurus.org/

Taurus is a free and open source framework for Continuous Testing which helps you by hiding the complexities of running performance tests. Think of it as an automation-friendly wrapper - it cloaks nicely around JMeter, neatly covering all of its complexities and imperfections.

When running JMeter through Taurus you can:

  1. Run an existing JMeter script
  2. Create a new JMeter script very easily using a YAML text file
  3. Automate your script with Jenkins
165 questions
0
votes
1 answer

TypeError: must be str, not NoneType when running distributed locust with taurus

I am trying to create a configuration for distributed locust run, I have a .py script with defined tasks, and I have simple taurus configuration just to make it working: execution: executor: locust master: true slaves: 1 scenario: tns …
alohamaloha
  • 147
  • 1
  • 12
0
votes
1 answer

Controlling the number of requests in Taurus

I am just wondering how I can control the number of requests in Taurus / Jmeter? Let's say I have to use an external file where there are prepared data for the test. I have to know how many data I should make for data (i.e. how many requests will be…
Viktor
  • 1,325
  • 2
  • 19
  • 41
0
votes
1 answer

Gatling in Taurus with feeder

I am familiarizing myself with performance tools and I found Taurus which seems great. I'd like to run Gatling in Taurus which is possible with executors. However during the test a text file should be used which contains dynamic data for the tests.…
Viktor
  • 1,325
  • 2
  • 19
  • 41
0
votes
1 answer

Error when using taurus to run jmeter / yml script. 'nonetype'

TypeError argument of type 'nonetype' is not iterable. Getting the above error when trying to run my first test in jenkins using taurus /bzt /jmeter. I am using the 'run performance test' build option. I have passed argument as bzt…
0
votes
1 answer

Set Gatling report name in Jenkins pipeline througt taurus

I'm writing a declarative jenkins pipeline and I'm facing problems with gatling reports: Mean response time trend is not correct, Is there a way to replace following cloud of dots by a curve ? Extracts from my Jenkinsfile: stage('perf') { steps…
Nelson G.
  • 5,145
  • 4
  • 43
  • 54
0
votes
1 answer

Fail a Jenkins build when a Taurus-run JMeter test records a failure

I've got some tests setup to run via Taurus and kicking them off in a Jenkins stage like so: ...previous stages... stage('Load Tests'){ dir('./tests'){ bat "bat _testFile.yml" } } ...stages to execute if Load Tests stage succeeds I want…
Tim Denison
  • 171
  • 1
  • 2
  • 13
0
votes
1 answer

Getting error while running Taurus

i have installed taurus with the help of 'Prebuilt Installer'(http://gettaurus.org/docs/Installation/), but while executing it throws some configuration error.i am using 'bzt' command to run the taurus. Can some one take a look and answer. Error…
zzz
  • 497
  • 3
  • 14
  • 32
0
votes
1 answer

Integrate Taurus test suites on Atlassian Bamboo CI

I am currently facing the following issue. I have a set of test cases that were implemented using the Taurus framework. On my local workstation I manage to successfully execute them by execution the following command on the console: bzt…
pafede2
  • 1,626
  • 4
  • 23
  • 40
0
votes
2 answers

Python: Getting Traceback error while executing the code

When I run the code as bzt test.yml I am getting the error. Before it was working fine. C:\etc\tmp\my-test>more test.yml --- execution: concurrency: 50 hold-for: 2m30s ramp-up: 1m scenario: requests: - url:…
Hardik Bhatt
  • 19
  • 10
0
votes
1 answer

Taurus: Attribute Error - 'NoneType' object has no attribute 'get'

I keep getting an error which says: 11:50:51 ERROR: AttributeError: 'NoneType' object has no attribute 'get' This is the code which i have written: --- execution: concurrency: 10 ramp-up: 1m hold-for: 2m scenario: script:…
Hardik Bhatt
  • 19
  • 10
0
votes
2 answers

jMeter JSON parsing failing on CentOS

I am running jMeter via Taurus (bzt) on CentOS. My first call is a login that needs to get the access tokens from the returned JSON. When I run this test on my Mac everything works as expected. But when I run it on my CentOS server I get the…
user3750195
  • 71
  • 1
  • 4
0
votes
1 answer

bzt 1.1.0 says DistributionNotFound: selenium

I just installed bzt 1.1.0 on my MacOSX but it won't run, it gives this message: Traceback (most recent call last): File "/usr/local/bin/bzt", line 5, in from pkg_resources import load_entry_point File…
Brent Washburne
  • 12,904
  • 4
  • 60
  • 82
-1
votes
1 answer

Taurus pass fail criteria on throughput or transaction/hits per seconds

How should I add taurus pass-fail criteria if requests/second for a sampler are less than 10 TPS.
-1
votes
1 answer

taurus installation using homebrew

I'm trying to install Taurus using home brew but I keep getting this error. Error: The following directories are not writable by your…
marko_acm
  • 1
  • 1
-1
votes
1 answer

No date-time format found matching timeStamp jmeter report aggregator

I used to create aggregate report from Jmeter jtl file with the following command: java -Djava.awt.headless=false -jar cmdrunner-2.2.jar --tool Reporter --generate-csv locust.csv --input-jtl 'kpi.jtl' --plugin-type AggregateReport And it works fine…
SergeyMoroz
  • 117
  • 3
  • 11
1 2 3
10
11