forked from jwoglom/asyncirc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
27 lines (21 loc) · 654 Bytes
/
Makefile
File metadata and controls
27 lines (21 loc) · 654 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
26
27
localtest:
cd test; python run_all.py
coverage:
cd test; coverage run --source asyncirc.plugins run_all.py; coverage html
cd test/htmlcov; google-chrome-stable index.html
clean:
rm -rf test/htmlcov
rm -f test/.coverage
rm -rf build dist
install:
python setup.py install
test: install
pip install coverage codacy-coverage
cd test; python run_all.py
cd test; coverage run --source asyncirc.plugins run_all.py; coverage report; coverage xml
codacy-coverage: test
cd test; python-codacy-coverage -r coverage.xml
dev-deps:
pip install blinker asyncio
git clone https://github.com/watchtower/asynctest
cd asynctest; python setup.py install