File: Makefile

package info (click to toggle)
libbytesize 2.12-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 788 kB
  • sloc: python: 1,854; ansic: 994; sh: 666; makefile: 258
file content (14 lines) | stat: -rw-r--r-- 296 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# This Makefile is just for running the tests

all:
	@echo "nothing to build"

check:
	PYTHONPATH=. tests/pylint/runpylint.py
	python3 -m unittest discover tests/unittests

test-projects:
	PYTHONPATH=. tests/project-tests/test_projects.sh tests/project-tests/project_list.txt

ci:
	$(MAKE) check