We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 728611e commit 08fe3bdCopy full SHA for 08fe3bd
recipes/libmodplug/all/test_package/conanfile.py
@@ -14,8 +14,10 @@ def build(self):
14
def test(self):
15
if not tools.cross_building(self.settings):
16
# Download a public domain xm file; https://modarchive.org/module.php?178293
17
- tools.download("https://api.modarchive.org/downloads.php?moduleid=178293#burbs.xm", filename="burbs.xm")
18
- tools.check_sha256("burbs.xm", "ced080401a2635cddc6d13b9095efa217f260ce7b3a482a29b454f72317b0c4d")
19
-
+ tools.download(
+ "https://api.modarchive.org/downloads.php?moduleid=178293#burbs.xm",
+ filename="burbs.xm",
20
+ sha256="ced080401a2635cddc6d13b9095efa217f260ce7b3a482a29b454f72317b0c4d",
21
+ )
22
bin_path = os.path.join("bin", "test_package")
23
self.run("%s %s" % (bin_path, "burbs.xm"), run_environment=True)
0 commit comments