Add some disassemble tests using pytest.

This commit is contained in:
rocky
2015-12-15 17:55:57 -05:00
parent fcfe451547
commit dafca53022
11 changed files with 228 additions and 21 deletions

View File

@@ -11,22 +11,22 @@ RM ?= rm
LINT = flake8
#EXTRA_DIST=ipython/ipy_trepan.py trepan
PHONY=check clean dist distclean lint flake8 test test-unit test-functional rmChangeLog clean_pyc nosetests
PHONY=check clean pytest dist distclean lint flake8 test test-unit test-functional rmChangeLog clean_pyc nosetests
#: Default target - same as "check"
all: check
#: Make HTML docs
html:
cd docs && $(MAKE) html
#: Same as "check"
test: check
test check: pytest check-short
#: Run tests
check check-short:
check-short: pytest
$(MAKE) -C test $@
#: Run tests
pytest:
$(MAKE) -C pytest check
#: Clean up temporary files and .pyc files
clean: clean_pyc
$(PYTHON) ./setup.py $@