Skip to content

Commit

Permalink
Merge pull request #129 from endlessm/T35027-drop-nexthw
Browse files Browse the repository at this point in the history
Drop nexthw platform config
  • Loading branch information
wjt authored Nov 17, 2023
2 parents d7a19cb + 53f4c04 commit c520de7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
5 changes: 0 additions & 5 deletions config/platform/nexthw.ini

This file was deleted.

8 changes: 5 additions & 3 deletions tests/test_image_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,11 @@ def test_series(make_builder, branch, expected):


@pytest.mark.parametrize('arch,platform,expected', [
('amd64', 'nexthw', 'nexthw'), ('amd64', None, 'amd64'),
('arm64', 'rpi4', 'rpi4'), ('arm64', None, 'arm64'),
('i386', 'i386', 'i386'), ('i386', None, 'i386'),
('amd64', None, 'amd64'),
('arm64', 'rpi4', 'rpi4'),
('arm64', None, 'arm64'),
('i386', 'i386', 'i386'),
('i386', None, 'i386'),
])
def test_platform(make_builder, arch, platform, expected):
builder = make_builder(arch=arch, platform=platform)
Expand Down

0 comments on commit c520de7

Please sign in to comment.