File: Makefile

package info (click to toggle)
hovercraft 2.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,476 kB
  • sloc: javascript: 3,206; python: 2,606; makefile: 157; sh: 2
file content (15 lines) | stat: -rw-r--r-- 225 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
root_dir := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))

all: coverage flake

flake:
	flake8 hovercraft tests

coverage:
	coverage run setup.py test
	coverage html
	coverage report

test:
	python setup.py test