From 8add960f6b556b30c654a3c19c189c6acb6e63c6 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Mon, 6 Jan 2020 15:31:10 +0100 Subject: [PATCH] bindings: python: tests: package the python test-suite in the dist tarball The test-suite python scripts is added to bin_SCRIPTS in Makefile.am. This means it's not distributed by default. Add it to dist_bin_SCRIPTS and make it part of the distribution tarball. Fixes: 452696601ae5 ("bindings: python: use unittest to implement a proper test-suite") Signed-off-by: Bartosz Golaszewski --- bindings/python/tests/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/tests/Makefile.am b/bindings/python/tests/Makefile.am index 937c673..9321dc6 100644 --- a/bindings/python/tests/Makefile.am +++ b/bindings/python/tests/Makefile.am @@ -6,7 +6,7 @@ # Copyright (C) 2019 Bartosz Golaszewski # -bin_SCRIPTS = gpiod_py_test.py +dist_bin_SCRIPTS = gpiod_py_test.py pyexec_LTLIBRARIES = gpiomockup.la -- 2.30.2