Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
654 changes: 653 additions & 1 deletion docs/dev/postman.json

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions framework/python/src/common/testreport.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,6 @@ def to_html(self):
logic = current_test_pack.get_logic()
steps_to_resolve_ = logic.get_steps_to_resolve(json_data)

LOGGER.debug(steps_to_resolve_)

module_reports = self._module_reports
env_module = Environment(loader=BaseLoader())
pages_num = self._pages_num(json_data)
Expand Down
1 change: 0 additions & 1 deletion framework/python/src/core/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ def __init__(self, root_dir):

# System network interfaces
self._ifaces = {}

# Loading methods
self._load_version()
self._load_config()
Expand Down
1 change: 0 additions & 1 deletion framework/python/src/test_orc/test_orchestrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,6 @@ def run_test_modules(self):
report = TestReport()

generated_report_json = self._generate_report()

report.from_json(generated_report_json)
report.add_module_reports(self.get_session().get_module_reports())
report.add_module_templates(self.get_session().get_module_templates())
Expand Down
2 changes: 1 addition & 1 deletion framework/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ responses==0.25.3
markdown==3.5.2

# Requirements for the session
cryptography==44.0.0
cryptography==44.0.1
pytz==2024.1

# Requirements for the risk profile
Expand Down
2 changes: 1 addition & 1 deletion make/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: Testrun
Version: 2.1
Version: 2.1.1
Architecture: amd64
Maintainer: Google <boddey@google.com>
Homepage: https://github.com/google/testrun
Expand Down
2 changes: 1 addition & 1 deletion modules/test/base/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ grpcio-tools==1.67.1
netifaces==0.11.0

# Requirements for reports generation
Jinja2==3.1.4
Jinja2==3.1.5
2 changes: 1 addition & 1 deletion modules/test/conn/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Package dependencies should always be defined before the user defined
# packages to prevent auto-upgrades of stable dependencies
cffi==1.17.1
cryptography==43.0.3
cryptography==44.0.1
pycparser==2.22
six==1.16.0

Expand Down
2 changes: 1 addition & 1 deletion modules/test/tls/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ termcolor==2.4.0
urllib3==2.2.2

# User defined packages
cryptography==43.0.1
cryptography==44.0.1
pyOpenSSL==24.3.0
lxml==5.1.0 # Requirement of pyshark but if upgraded automatically above 5.1 will cause a
pyshark==0.6
Expand Down
1 change: 1 addition & 0 deletions modules/test/tls/python/src/tls_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
LOGGER = None
REPORT_TEMPLATE_FILE = 'report_template.jinja2'


class TLSModule(TestModule):
"""The TLS testing module."""

Expand Down
Loading
Loading