-
-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathMakefile
More file actions
25 lines (22 loc) · 641 Bytes
/
Makefile
File metadata and controls
25 lines (22 loc) · 641 Bytes
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
# Some simple testing tasks (sorry, UNIX only).
cov:
@py.test --cov=aiohttp_swagger --cov-report=term --cov-report=html tests
clean:
@rm -rf `find . -name __pycache__`
@rm -f `find . -type f -name '*.py[co]' `
@rm -f `find . -type f -name '*~' `
@rm -f `find . -type f -name '.*~' `
@rm -f `find . -type f -name '@*' `
@rm -f `find . -type f -name '#*#' `
@rm -f `find . -type f -name '*.orig' `
@rm -f `find . -type f -name '*.rej' `
@rm -f .coverage
@rm -rf coverage
@rm -rf build
@rm -rf cover
@make -C docs clean
@python setup.py clean
@rm -rf .tox
install:
@pip install -U pip
@pip install -Ur requirements-dev.txt