-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
122 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
import pytest | ||
from opal_common.config import opal_common_config | ||
from opal_client.config import opal_client_config | ||
from opal_common.config import opal_common_config | ||
from opal_server.config import opal_server_config | ||
|
||
|
||
def test_opal_common_config_descriptions(): | ||
for name, entry in opal_common_config.entries.items(): | ||
assert entry.description is not None, f"{name} is missing a description" | ||
|
||
|
||
def test_opal_client_config_descriptions(): | ||
for name, entry in opal_client_config.entries.items(): | ||
assert entry.description is not None, f"{name} is missing a description" | ||
|
||
|
||
def test_opal_server_config_descriptions(): | ||
for name, entry in opal_server_config.entries.items(): | ||
assert entry.description is not None, f"{name} is missing a description" |
Oops, something went wrong.