summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Mollier <emollier@debian.org>2022-12-02 21:17:47 +0100
committerÉtienne Mollier <emollier@debian.org>2022-12-02 21:17:47 +0100
commit37877a36f1ea1d746ecb95337d6ddb8a6797ddba (patch)
tree006caf04efd9087165bfd71741ec42428807228e
parent25419fa341d4701d93c505232a326d60f317ab9e (diff)
d/t/run-unit-test: replace nose by pytest.
-rw-r--r--debian/tests/run-unit-test2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/tests/run-unit-test b/debian/tests/run-unit-test
index 81aa06f..00ca782 100644
--- a/debian/tests/run-unit-test
+++ b/debian/tests/run-unit-test
@@ -15,6 +15,6 @@ cd $AUTOPKGTEST_TMP
for py in $(py3versions -s 2> /dev/null)
do
echo "Testing with $py in $(pwd):"
- nosetests3 -v
+ pytest-3 -v
done