Skip to content
Open
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN apt-get update \
&& tar -xvzf v3.0.7.tar.gz --strip-components=1 \
&& rm v3.0.7.tar.gz \
&& npm config set unsafe-perm true \
&& npm install -g AMWA-TV/sdpoker#v0.3.0 \
&& npm install -g AMWA-TV/sdpoker#v0.4.0 \
&& rm /home/nmos-testing/setup_16.x \
&& apt-get remove -y wget \
&& apt-get clean -y --no-install-recommends \
Expand Down
2 changes: 1 addition & 1 deletion nmostesting/NMOSTesting.py
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,7 @@ def check_internal_requirements():

def check_external_requirements():
deps = {
"sdpoker": ("sdpoker --version", "0.3.0"),
"sdpoker": ("sdpoker --version", "0.4.0"),
"testssl": ("{} testssl/testssl.sh -v".format(shlex.quote(CONFIG.TEST_SSL_BASH)), "3.0.7")
}
for dep_name, dep_ver in deps.items():
Expand Down
2 changes: 1 addition & 1 deletion nmostesting/suites/IS0501Test.py
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ def test_41(self, test):
return test.UNCLEAR("Not tested. No resources found.")

# Check SDPoker version
sdpoker_min_version = "0.3.0"
sdpoker_min_version = "0.4.0"
try:
cmd_string = "sdpoker --version"
output = subprocess.check_output(cmd_string, stderr=subprocess.STDOUT, shell=True)
Expand Down