Ticket #747: 0001-runtests.sh-was-asking-to-install-nose-instead-of-py.patch

File 0001-runtests.sh-was-asking-to-install-nose-instead-of-py.patch, 704 bytes (added by Amirouche, 11 years ago)
  • runtests.sh

    From 6cf2ed4bec028a05c9c66d15d90be03ecde2a1e0 Mon Sep 17 00:00:00 2001
    From: Amirouche Boubekki <amirouche.boubekki@gmail.com>
    Date: Thu, 8 Aug 2013 20:51:20 +0200
    Subject: [PATCH 1/2] runtests.sh was asking to install nose instead of pytest
    
    ---
     runtests.sh | 2 +-
     1 file changed, 1 insertion(+), 1 deletion(-)
    
    diff --git a/runtests.sh b/runtests.sh
    index 00164a7..ae020fe 100755
    a b elif which py.test > /dev/null; then  
    3434    export PYTEST="py.test";
    3535else
    3636    echo "py.test not found.  X_X";
    37     echo "Please install 'nose'.  Exiting.";
     37    echo "Please install 'pytest e.g. with pip install pytest'.  Exiting.";
    3838    exit 1
    3939fi
    4040