forked from robinandeer/chanjo-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasks.py
57 lines (44 loc) · 1.38 KB
/
tasks.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
from invoke import run, task
from invoke.util import log
@task
def test():
"""test - run the test runner."""
run('python setup.py test', pty=True)
@task
def clean():
"""clean - remove build artifacts."""
run('rm -rf build/')
run('rm -rf dist/')
run('rm -rf chanjo-report.egg-info')
run('find . -name *.pyc -delete')
run('find . -name *.pyo -delete')
run('find . -name *~ -delete')
run('find . -name __pycache__ -delete')
log.info('cleaned up')
@task
def lint():
"""lint - check style with flake8."""
run('flake8 chanjo-report tests')
@task
def coverage():
"""coverage - check code coverage quickly with the default Python."""
run('coverage run --source chanjo-report setup.py test')
run('coverage report -m')
run('coverage html')
run('open htmlcov/index.html')
log.info('collected test coverage stats')
@task
def babel():
"""Babel compile."""
run("pybabel compile -f --statistics --directory "
"`find chanjo_report/ -name translations`")
log.info("compiled Babel translations")
@task(clean, babel)
def publish():
"""publish - package and upload a release to the cheeseshop."""
run('python setup.py sdist upload', pty=True)
run('python setup.py bdist_wheel upload', pty=True)
log.info('published new release')