List of supported test slugs
()
| 67 | |
| 68 | |
| 69 | def slugs(): |
| 70 | """ |
| 71 | List of supported test slugs |
| 72 | """ |
| 73 | all_slugs = [] |
| 74 | for platform in TEST_SALT_LISTING: |
| 75 | for osdef in TEST_SALT_LISTING[platform]: |
| 76 | if osdef.enabled: |
| 77 | all_slugs.append(osdef.slug) |
| 78 | return all_slugs |
| 79 | |
| 80 | |
| 81 | class NeedsTracker: |
no test coverage detected