forked from sigmavirus24/github3.py
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
Latest commit
26 lines (18 loc) · 386 Bytes
/
Copy pathMakefile
File metadata and controls
26 lines (18 loc) · 386 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
# Makefile for github3.py
#
# Copyright 2012, Ian Cordasco
COVERAGE_INCLUDE := github3/*.py
TEST_RUNNER := python setup.py test
.DEFAULT_GOAL := tests
clean:
git clean -Xdf
rm -rf build/ dist/
travis:
$(TEST_RUNNER)
tests: travis
test-deps:
pip install -r dev-requirements.txt
htmlcov: .coverage
coverage html --omit=github3/packages/*
docs: docs/*.rst
make -C docs/ html