
.ONESHELL:

all: py2-test py3-test

py2-test: SHELL=python2
py3-test: SHELL=python3

%-test:
	import sys
	from cobra.test import test_all

	sys.exit(test_all())
