commit: 01c2e716e8767365aaf829143e85181a7ac9bd06
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun May 12 12:42:25 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun May 12 13:05:29 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01c2e716
dev-python/libcst: Run cargo test as well
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/libcst/libcst-1.3.1.ebuild | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/dev-python/libcst/libcst-1.3.1.ebuild
b/dev-python/libcst/libcst-1.3.1.ebuild
index 48d70b9be0ed..19fd96d2908f 100644
--- a/dev-python/libcst/libcst-1.3.1.ebuild
+++ b/dev-python/libcst/libcst-1.3.1.ebuild
@@ -180,3 +180,8 @@ python_test() {
[[ ${ret} -ne 0 ]] && die "Tests failed on ${EPYTHON}"
}
+
+python_test_all() {
+ cd native || die
+ cargo_src_test
+}