Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use new repo names #743

Merged
merged 1 commit into from
Jan 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions nmostesting/Config.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
# Definition of each API specification and its versions.
SPECIFICATIONS = {
"is-04": {
"repo": "nmos-discovery-registration",
"repo": "is-04",
"versions": ["v1.0", "v1.1", "v1.2", "v1.3"],
"default_version": "v1.3",
"apis": {
Expand All @@ -194,7 +194,7 @@
}
},
"is-05": {
"repo": "nmos-device-connection-management",
"repo": "is-05",
"versions": ["v1.0", "v1.1"],
"default_version": "v1.1",
"apis": {
Expand All @@ -205,7 +205,7 @@
}
},
"is-06": {
"repo": "nmos-network-control",
"repo": "is-06",
"versions": ["v1.0"],
"default_version": "v1.0",
"apis": {
Expand All @@ -216,7 +216,7 @@
}
},
"is-07": {
"repo": "nmos-event-tally",
"repo": "is-07",
"versions": ["v1.0"],
"default_version": "v1.0",
"apis": {
Expand All @@ -227,7 +227,7 @@
}
},
"is-08": {
"repo": "nmos-audio-channel-mapping",
"repo": "is-08",
"versions": ["v1.0"],
"default_version": "v1.0",
"apis": {
Expand All @@ -238,7 +238,7 @@
}
},
"is-09": {
"repo": "nmos-system",
"repo": "is-09",
"versions": ["v1.0"],
"default_version": "v1.0",
"apis": {
Expand All @@ -249,7 +249,7 @@
}
},
"is-10": {
"repo": "nmos-authorization",
"repo": "is-10",
"versions": ["v1.0"],
"default_version": "v1.0",
"apis": {
Expand All @@ -260,13 +260,13 @@
}
},
"bcp-003-01": {
"repo": "nmos-secure-communication",
"repo": "bcp-003-01",
"versions": ["v1.0"],
"default_version": "v1.0",
"apis": {}
},
"bcp-004-01": {
"repo": "nmos-receiver-capabilities",
"repo": "bcp-004-01",
"versions": ["v1.0"],
"default_version": "v1.0",
"apis": {
Expand Down
2 changes: 1 addition & 1 deletion nmostesting/GenericTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def uncaught_exception(self, test_name, exception):
traceback.print_exc()
test = Test("Error executing {}".format(test_name), test_name)
return test.FAIL("Uncaught exception. Please report the traceback from the terminal to "
"https://github.com/amwa-tv/nmos-testing/issues. {}".format(exception))
"https://github.com/AMWA-TV/nmos-testing/issues. {}".format(exception))

def set_up_tests(self):
"""Called before a set of tests is run. Override this method with setup code."""
Expand Down
4 changes: 2 additions & 2 deletions nmostesting/suites/IS0402Test.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ def test_21_2(self, test):
description = "test_21_2"

# Initial test cases based on the examples in NMOS documentation
# See https://github.com/AMWA-TV/nmos-discovery-registration/blob/v1.2.x/docs/2.5.%20APIs%20-%20Query%20Parameters.md#pagination # noqa: E501
# See https://specs.amwa.tv/is-04/releases/v1.2.2/docs/2.5._APIs_-_Query_Parameters.html#pagination

ts, ids = self.post_sample_nodes(test, 20, description)

Expand All @@ -598,7 +598,7 @@ def TS_recommended(i):
# "Implementations may specify their own default and maximum for the limit"
# so theoretically, if a Query API had a very low maximum limit, that number could be returned
# rather than the requested limit, for many of the following tests.
# See https://github.com/AMWA-TV/nmos-discovery-registration/blob/v1.2.x/APIs/QueryAPI.raml#L37
# See https://github.com/AMWA-TV/is-04/blob/v1.2.2/APIs/QueryAPI.raml#L37

# Example 1: Initial /nodes Request

Expand Down