-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
117 lines (97 loc) · 2.71 KB
/
setup.cfg
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[metadata]
name = nanaimo
author = Amazon.com
author_email = [email protected]
url = https://github.com/thirtytwobits/nanaimo
description = Framework for automating tests involving hardware test fixtures.
long_description = file: README.rst
long_description_content_type = text/x-rst
license = MIT
license_file = LICENSE.rst
keywords = ci, hil, test
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Environment :: Plugins
Framework :: Pytest
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering
Topic :: Software Development :: Embedded Systems
Topic :: Software Development :: Libraries
Topic :: Software Development :: Build Tools
Typing :: Typed
[options]
package_dir=
=src
packages=find:
install_requires =
pyserial
pytest
pytest-asyncio
zip_safe = False
python_requires = >=3.5
[options.entry_points]
pytest11 =
pytest_nanaimo = nanaimo.pytest.plugin
pytest_nanaimo_plugin_bar = nanaimo.builtin.nanaimo_bar
pytest_nanaimo_plugin_cmd = nanaimo.builtin.nanaimo_cmd
pytest_nanaimo_plugin_scp = nanaimo.builtin.nanaimo_scp
pytest_nanaimo_plugin_ssh = nanaimo.builtin.nanaimo_ssh
pytest_nanaimo_plugin_gather = nanaimo.builtin.nanaimo_gather
pytest_nanaimo_plugin_serial_watch = nanaimo.builtin.nanaimo_serial_watch
pytest_nanaimo_plugin_instr_bkprecision = nanaimo.instruments.bkprecision
pytest_nanaimo_plugin_instr_saleae = nanaimo.instruments.saleae
pytest_nanaimo_plugin_instr_ykush = nanaimo.instruments.ykush
pytest_nanaimo_plugin_jlink = nanaimo.instruments.jlink
pytest_nanaimo_plugin_display = nanaimo.display
console_scripts =
nait = nanaimo.cli:main
[options.packages.find]
where=src
[coverage:run]
branch=True
timid=False
parallel=True
include =
*/nait
src/nanaimo/*
.tox/*/site-packages/nanaimo/*
omit =
*/setup.py
*/conf.py
*/conftest.py
[coverage:paths]
source =
src
.tox/*/site-packages
.tox/*/bin
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
raise AssertionError
raise NotImplementedError
assert False
if False:
if __name__ == .__main__.:
...
[nanaimo]
test_cfg = 1
log_level = DEBUG
environ =
NANAIMO_UNITTEST = This is a nanaimo unittest environment.
[nanaimo:test]
cfg = 2
[nanaimo:bk]
port = dummy/port/from/config.cfg
[nanaimo:yep]
pantilt_port = 1
imu_port = 2