Mercurial > python-hglib
comparison Makefile @ 219:8341f2494b3f
hglib tests: migrate away from (unmaintained) nose
author | Mathias De Mare <mathias.de_mare@nokia.com> |
---|---|
date | Wed, 08 Mar 2023 17:04:58 +0100 |
parents | b8edcb693518 |
children |
comparison
equal
deleted
inserted
replaced
218:934608d4fcba | 219:8341f2494b3f |
---|---|
1 PYTHON=python | 1 PYTHON=python3 |
2 help: | 2 help: |
3 @echo 'Commonly used make targets:' | 3 @echo 'Commonly used make targets:' |
4 @echo ' tests - run all tests in the automatic test suite' | 4 @echo ' tests - run all tests in the automatic test suite' |
5 | 5 |
6 all: help | 6 all: help |
12 | 12 |
13 dist: MANIFEST.in | 13 dist: MANIFEST.in |
14 TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py -q sdist | 14 TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py -q sdist |
15 | 15 |
16 tests: | 16 tests: |
17 $(PYTHON) test.py --with-doctest | 17 $(PYTHON) -m unittest discover |