
.ONESHELL:

all: py3-test

py3-test: SHELL=python3

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

	sys.exit(0) if test_all() else sys.exit(1)
