1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: Fixes missing tests
This patch adding tests to result
binary package. Needed mainly during
the build.
Author: Michal Arbet <michal.arbet@ultimum.io>
Forwarded: not-needed
Last-Update: 2023-09-03
diff --git a/setup.py b/setup.py
index 01e2dd7..95d760a 100644
--- a/setup.py
+++ b/setup.py
@@ -4,9 +4,7 @@ import setuptools
from setuptools import find_packages
from setuptools.command.build_py import build_py as build_py_orig
-excluded = [
- "podman/tests/*",
-]
+excluded = []
class build_py(build_py_orig):
|