diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 19:59:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 19:59:19 +0000 |
commit | de82646ab1936e0fcc2dbd6f498981b2a7b97f35 (patch) | |
tree | be5995b0aed456cdf54a84f07ee00780b6053fc0 /debian/patches | |
parent | Adding upstream version 2.4.0. (diff) | |
download | asciinema-de82646ab1936e0fcc2dbd6f498981b2a7b97f35.tar.xz asciinema-de82646ab1936e0fcc2dbd6f498981b2a7b97f35.zip |
Adding debian version 2.4.0-1.debian/2.4.0-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | debian/patches/series | 1 | ||||
-rw-r--r-- | debian/patches/use-pytest3.patch | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..a1da758 --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +use-pytest3.patch diff --git a/debian/patches/use-pytest3.patch b/debian/patches/use-pytest3.patch new file mode 100644 index 0000000..9b65c14 --- /dev/null +++ b/debian/patches/use-pytest3.patch @@ -0,0 +1,15 @@ +Description: call pytest-3 instead of pytest +Author: gustavo panizzo <gfa@zumbi.com.ar> +Last-Update: 2022-05-17 +Origin: vendor +--- a/Makefile ++++ b/Makefile +@@ -8,7 +8,7 @@ test: test.unit test.integration + + .PHONY: test.unit + test.unit: +- pytest ++ pytest-3 + + .PHONY: test.integration + test.integration: |