We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f794cd commit 24f99bcCopy full SHA for 24f99bc
setup.py
@@ -67,10 +67,14 @@
67
ext_modules=[yahdlc],
68
python_requires=">=3.6, <4",
69
extras_require={
70
+ "examples": [
71
+ "fysom",
72
+ "pyserial",
73
+ ],
74
"tests": [
75
"flake8",
76
"pylint",
- "tox"
77
+ "tox",
78
],
79
},
80
)
tox.ini
@@ -15,13 +15,17 @@ commands =
15
16
[testenv:flake8]
17
description = "Check code style & quality"
18
-deps = flake8
+deps =
19
+ flake8
20
+ .[examples]
21
commands =
22
{envpython} -m flake8 tests examples
23
24
[testenv:pylint]
25
description = "Check for programming errors"
-deps = pylint
26
27
+ pylint
28
29
30
{envpython} -m pylint tests examples
31
0 commit comments