You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Need to convert the following test from pytest to the CI test framework.
deftest_files_metadata(host):
"""Verify all image files generated by the Dockerfile"""dogecoind=host.file(abs_path("dogecoind"))
assertdogecoind.user=="dogecoin"assertdogecoind.group=="dogecoin"assertdogecoind.mode==0o4555dogecoinqt=host.file(abs_path("dogecoin-qt"))
assertdogecoinqt.user=="dogecoin"assertdogecoinqt.group=="dogecoin"assertdogecoinqt.mode==0o4555dogecointx=host.file(abs_path("dogecoin-tx"))
assertdogecointx.user=="dogecoin"assertdogecointx.group=="dogecoin"assertdogecointx.mode==0o4555dogecoincli=host.file(abs_path("dogecoin-cli"))
assertdogecoincli.user=="dogecoin"assertdogecoincli.group=="dogecoin"assertdogecoincli.mode==0o4555entrypoint_script=host.file(abs_path("entrypoint.py"))
assertentrypoint_script.user=="root"assertentrypoint_script.group=="root"assertentrypoint_script.mode==0o500
The text was updated successfully, but these errors were encountered:
Need to convert the following test from pytest to the CI test framework.
The text was updated successfully, but these errors were encountered: