File: Makefile

package info (click to toggle)
python-memory-profiler 0.61-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 540 kB
  • sloc: python: 2,220; makefile: 33
file content (25 lines) | stat: -rw-r--r-- 797 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
PYTHON ?= python

.PHONY: test develop

test:
	$(PYTHON) -m memory_profiler test/test_func.py
	$(PYTHON) -m memory_profiler test/test_loop.py
	$(PYTHON) -m memory_profiler test/test_mprofile.py
	$(PYTHON) -m memory_profiler test/test_as.py
	$(PYTHON) -m memory_profiler test/test_global.py
	$(PYTHON) -m memory_profiler test/test_precision_command_line.py
	$(PYTHON) -m memory_profiler test/test_gen.py
	$(PYTHON) -m memory_profiler test/test_unicode.py
	$(PYTHON) test/test_tracemalloc.py
	$(PYTHON) test/test_import.py
	$(PYTHON) test/test_memory_usage.py
	$(PYTHON) test/test_precision_import.py
	$(PYTHON) test/test_exception.py
	$(PYTHON) test/test_exit_code.py
	$(PYTHON) test/test_mprof.py
	$(PYTHON) test/test_async.py
	$(PYTHON) -m mprof run test/test_func.py

develop:
	pip install -e .