svn commit: r498797 - head/textproc/py-awesome-slugify

Matthew Seaman matthew at FreeBSD.org
Sat Apr 13 08:51:28 UTC 2019


Author: matthew
Date: Sat Apr 13 08:51:27 2019
New Revision: 498797
URL: https://svnweb.freebsd.org/changeset/ports/498797

Log:
  Fix nosetests for non-default Python version
  
  LOCALBASE/bin/nosetests is installed by py-nose of default Python version.
  
  PR:		237239
  Submitted by:	sunpoet

Modified:
  head/textproc/py-awesome-slugify/Makefile

Modified: head/textproc/py-awesome-slugify/Makefile
==============================================================================
--- head/textproc/py-awesome-slugify/Makefile	Sat Apr 13 06:06:47 2019	(r498796)
+++ head/textproc/py-awesome-slugify/Makefile	Sat Apr 13 08:51:27 2019	(r498797)
@@ -20,7 +20,7 @@ USE_PYTHON=	autoplist distutils
 
 NO_ARCH=	yes
 TEST_TARGET=	do-test
-NOSETESTS=	nosetests
+NOSETESTS=	nosetests-${PYTHON_VER}
 
 do-test:
 	${NOSETESTS} ${STAGEDIR}${PYTHON_SITELIBDIR}/slugify


More information about the svn-ports-head mailing list