forked from pdfminer/pdfminer.six
-
Notifications
You must be signed in to change notification settings - Fork 0
/
noxfile.py
52 lines (39 loc) · 1.15 KB
/
noxfile.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
import os
import nox
PYTHON_ALL_VERSIONS = ["3.6", "3.7", "3.8", "3.9", "3.10"]
PYTHON_MODULES = ["pdfminer", "tools", "tests", "noxfile.py", "setup.py"]
@nox.session
def format(session):
session.install("black")
# Format files locally with black, but only check in cicd
if "CI" in os.environ:
session.run("black", "--check", *PYTHON_MODULES)
else:
session.run("black", *PYTHON_MODULES)
@nox.session
def lint(session):
session.install("flake8")
session.run("flake8", *PYTHON_MODULES, "--count", "--statistics")
@nox.session
def types(session):
session.install("mypy")
session.run(
"mypy",
"--install-types",
"--non-interactive",
"--show-error-codes",
*PYTHON_MODULES,
)
@nox.session(python=PYTHON_ALL_VERSIONS)
def tests(session):
session.install("-e", ".[dev]")
session.run("pytest")
@nox.session
def docs(session):
session.install("-e", ".[docs]")
session.run(
"python", "-m", "sphinx", "-b", "html", "docs/source", "docs/build/html"
)
session.run(
"python", "-m", "sphinx", "-b", "doctest", "docs/source", "docs/build/doctest"
)