FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Makefile.test 515 B
Newer Older
Silas S. Brown's avatar
Silas S. Brown committed
# -*- mode: Makefile -*-
test:
	# at least check it compiles in both 2 and 3
	echo | python2 annogen.py >/dev/null
	echo | python3 annogen.py >/dev/null
	echo | python2 annogen.py -l >/dev/null
	echo | python3 annogen.py -l >/dev/null
	python2 -c 'import annogen as a;a.jsAnnot(False,True)'
	python3 -c 'import annogen as a;a.jsAnnot(False,True)'
	python2 -c 'import annogen as a;a.delete_existing_ruby=True;a.jsAnnot(False,True)'
	python3 -c 'import annogen as a;a.delete_existing_ruby=True;a.jsAnnot(False,True)'