diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 16:27:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 16:27:44 +0000 |
commit | 32a000d14361b76a22f0db8d22553d7fa2a1b40c (patch) | |
tree | b3b4e83e7f01625e58f3b6c256d47c01e90e7238 /debian/patches | |
parent | Adding upstream version 2.2.0. (diff) | |
download | asciinema-32a000d14361b76a22f0db8d22553d7fa2a1b40c.tar.xz asciinema-32a000d14361b76a22f0db8d22553d7fa2a1b40c.zip |
Adding debian version 2.2.0-1.debian/2.2.0-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches')
-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: |