Skip to content

Commit

Permalink
Store os types in list instead of tuple so that it can be extended by…
Browse files Browse the repository at this point in the history
… third parties (#1348)
  • Loading branch information
tedsta authored and gareth-ferneyhough committed May 10, 2017
1 parent d59d2c9 commit 2505fb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions perfkitbenchmarker/os_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
UBUNTU_CONTAINER = 'ubuntu_container'
WINDOWS = 'windows'

LINUX_OS_TYPES = DEBIAN, JUJU, RHEL, UBUNTU_CONTAINER
WINDOWS_OS_TYPES = WINDOWS,
LINUX_OS_TYPES = [DEBIAN, JUJU, RHEL, UBUNTU_CONTAINER]
WINDOWS_OS_TYPES = [WINDOWS]
ALL = LINUX_OS_TYPES + WINDOWS_OS_TYPES

flags.DEFINE_enum(
Expand Down

0 comments on commit 2505fb5

Please sign in to comment.