Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
strategy:
matrix:
include:
# - { ROS_DISTRO: kinetic }
# - { ROS_DISTRO: melodic }
- { ROS_DISTRO: kinetic }
- { ROS_DISTRO: melodic }
- { ROS_DISTRO: noetic }

steps:
Expand Down
8 changes: 3 additions & 5 deletions atf_core/src/atf_core/configuration_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,11 +323,9 @@ def get_sorted_plot_dicts(self, atf_result, filter_tests, filter_testblocks, fil
# mtb
if metric_name not in list(mtb.keys()):
mtb[metric_name] = {}
#test_name = test.name
test_name = test.name + "\n" + test.robot
if test_name not in list(mtb[metric_name].keys()):
mtb[metric_name][test_name] = {}
mtb[metric_name][test_name][testblock.name] = metric
if test.name not in list(mtb[metric_name].keys()):
mtb[metric_name][test.name] = {}
mtb[metric_name][test.name][testblock.name] = metric

ret = {}
ret['tbm'] = tbm
Expand Down
2 changes: 1 addition & 1 deletion atf_test/atf/test_generation_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ testsuites: # You have to define at least one testsuite
testblocksets: # You have to define at least one testblockset
- testblockset1
- testblockset2
repetitions: 1 # Number of repetitions per test (this is an optional parameter, default = 1)
# repetitions: 1 # Number of repetitions per test (this is an optional parameter, default = 1)

- tests:
- test1
Expand Down