File: Makefile

package info (click to toggle)
rust-ognibuild 0.2.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,676 kB
  • sloc: makefile: 17
file content (23 lines) | stat: -rw-r--r-- 309 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
check:: style

style:
	ruff check py

check:: testsuite

build-inplace:
	python3 setup.py build_rust --inplace

testsuite:
	cargo test

check:: typing

typing:
	mypy py tests

coverage:
	PYTHONPATH=$(shell pwd)/py python3 -m coverage run -m unittest tests.test_suite

coverage-html:
	python3 -m coverage html