diff mbox series

[v3,4/5] tests: fetch: add status test for the GitHub release artifact fetcher

Message ID 20250307120055.1816436-5-l.goehrs@pengutronix.de
State New
Headers show
Series fetch2/github_release_artifact: fetcher for (private) release artifacts | expand

Commit Message

Leonard Göhrs March 7, 2025, noon UTC
This re-uses the same URL that is already used by the download test of the
same fetcher.

Signed-off-by: Leonard Göhrs <l.goehrs@pengutronix.de>
---
 lib/bb/tests/fetch.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/lib/bb/tests/fetch.py b/lib/bb/tests/fetch.py
index 517894881..cf5ce2ebd 100644
--- a/lib/bb/tests/fetch.py
+++ b/lib/bb/tests/fetch.py
@@ -1606,7 +1606,8 @@  class FetchCheckStatusTest(FetcherTest):
                       "https://downloads.yoctoproject.org/releases/opkg/opkg-0.3.0.tar.gz",
                       "ftp://sourceware.org/pub/libffi/libffi-1.20.tar.gz",
                       # GitHub releases are hosted on Amazon S3, which doesn't support HEAD
-                      "https://github.com/kergoth/tslib/releases/download/1.1/tslib-1.1.tar.xz"
+                      "https://github.com/kergoth/tslib/releases/download/1.1/tslib-1.1.tar.xz",
+                      "ghra://github.com/kergoth/tslib/1.1/tslib-1.1.tar.xz"
                       ]
 
     @skipIfNoNetwork()