Skip to content

Commit

Permalink
Merge pull request #66 from eldaduzman/TASK/#65
Browse files Browse the repository at this point in the history
add dependency to poetry
  • Loading branch information
eldaduzman authored Oct 3, 2022
2 parents 56502df + 2c41f04 commit 4743498
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
8 changes: 4 additions & 4 deletions docs/badges/pylint.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 4 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "py-jmeter-dsl"
version = "0.1-alpha.1"
version = "0.2-alpha.1"
description = "Simple JMeter performance tests API for python"
authors = ["Eldad Uzman <[email protected]>"]
license = "Apache License 2.0"
Expand All @@ -18,6 +18,7 @@ keywords = ["loadtesting", "qa", "JMeter", "automation", "performance", "perform
[tool.poetry.dependencies]
python = "^3.8"
pyjnius = "^1.4.2"
typing-extensions = "^4.3.0"


[tool.poetry.group.dev.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/pymeter/api/postprocessors.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class BasePostProcessors(ThreadGroupChildElement):
class JsonExtractor(BasePostProcessors):
"""
Extracts a value from a json response using a json path.
Read more about json path `here <https://support.smartbear.com/alertsite/docs/monitors/api/endpoint/jsonpath.html>`_
Read more about json path `here <https://support.smartbear.com/alertsite/docs/monitors/api/endpoint/jsonpath.html>`_
"""

def __init__(self, variable_name: str, jmes_path: str) -> None:
Expand Down

0 comments on commit 4743498

Please sign in to comment.