forked from sloria/doitlive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtasks.py
More file actions
74 lines (62 loc) · 1.65 KB
/
tasks.py
File metadata and controls
74 lines (62 loc) · 1.65 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# -*- coding: utf-8 -*-
import os
import sys
import webbrowser
from invoke import task
docs_dir = 'docs'
build_dir = os.path.join(docs_dir, '_build')
@task
def test(ctx, tox=False, lint=True, last_failing=False):
"""Run the tests.
Note: --watch requires pytest-xdist to be installed.
"""
if tox:
ctx.run('tox')
else:
import pytest
if lint:
flake(ctx)
args = []
if last_failing:
args.append('--lf')
retcode = pytest.main(args)
sys.exit(retcode)
@task(aliases=['lint', 'flake8'])
def flake(ctx):
"""Run flake8 on codebase."""
ctx.run('flake8 .', echo=True)
@task
def readme(ctx, browse=False):
ctx.run('rst2html.py README.rst > README.html')
if browse:
webbrowser.open_new_tab('README.html')
@task
def clean(ctx):
ctx.run("rm -rf build")
ctx.run("rm -rf dist")
ctx.run("rm -rf doitlive.egg-info")
clean_docs(ctx)
print("Cleaned up.")
@task
def publish(ctx, test=False):
"""Publish to the cheeseshop."""
clean(ctx)
if test:
ctx.run('python setup.py register -r test sdist', echo=True)
ctx.run('twine upload dist/* -r test', echo=True)
else:
ctx.run('python setup.py register sdist', echo=True)
ctx.run('twine upload dist/*', echo=True)
@task
def clean_docs(ctx):
ctx.run("rm -rf %s" % build_dir)
@task
def browse_docs(ctx):
ctx.run("open %s" % os.path.join(build_dir, 'index.html'))
@task
def docs(ctx, clean=False, browse=False):
if clean:
clean_docs(ctx)
ctx.run("sphinx-build %s %s" % (docs_dir, build_dir), pty=True)
if browse:
browse_docs(ctx)