Skip to content

Commit

Permalink
use multiple options in test easystack file + fix test_easystack_easy…
Browse files Browse the repository at this point in the history
…config_opts
  • Loading branch information
boegel committed Sep 24, 2022
1 parent 5c54d1f commit 1ccfb86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/framework/easystack.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ def test_easystack_easyconfig_opts(self):
'toy-0.0-gompi-2018a-test.eb',
]
expected_opts = {
'binutils-2.25-GCCcore-4.9.3.eb': {'debug': True},
'foss-2018a.eb': {'robot': True},
'binutils-2.25-GCCcore-4.9.3.eb': {'debug': True, 'from-pr': 12345},
'foss-2018a.eb': {'enforce-checksums': True, 'robot': True},
}
self.assertEqual(sorted(ec_fns), sorted(expected))
self.assertEqual(opts, expected_opts)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ easyconfigs:
- binutils-2.25-GCCcore-4.9.3:
options: {
'debug': True,
'from-pr': 12345,
}
- binutils-2.26-GCCcore-4.9.3
- foss-2018a:
options: {
'enforce-checksums': True,
'robot': True,
}
- toy-0.0-gompi-2018a-test

0 comments on commit 1ccfb86

Please sign in to comment.