File: Makefile

package info (click to toggle)
python-cobra 0.14.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 12,428 kB
  • sloc: xml: 133,433; python: 10,115; makefile: 143; sh: 22
file content (12 lines) | stat: -rw-r--r-- 151 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12

.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)