Skip to content

Commit

Permalink
Merge pull request #191 from floweisshardt/feature/disable_non_suppor…
Browse files Browse the repository at this point in the history
…ted_OS

disable kinetic and melodic
  • Loading branch information
floweisshardt authored May 9, 2023
2 parents 042a997 + 8fc76e2 commit 9a41139
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
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: 5 additions & 3 deletions atf_core/src/atf_core/configuration_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,9 +323,11 @@ 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] = {}
if test.name not in list(mtb[metric_name].keys()):
mtb[metric_name][test.name] = {}
mtb[metric_name][test.name][testblock.name] = metric
#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

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

0 comments on commit 9a41139

Please sign in to comment.