forked from zephyrproject-rtos/twister
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
52 lines (46 loc) · 1.21 KB
/
Copy pathsetup.cfg
File metadata and controls
52 lines (46 loc) · 1.21 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
[metadata]
name = pytest-twister
version = attr: twister2.__version__
description = Plugin for pytest to run Zephyr tests
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/zephyrproject-rtos/twister
python_requires = ~=3.8
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Topic :: Software Development :: Embedded Systems
Topic :: Software Development :: Quality Assurance
Operating System :: Posix :: Linux
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
packages = find:
package_dir =
=src
install_requires =
marshmallow
pytest>=7.0.0
pytest-subtests>=0.7.0
PyYAML>=5.1
pyserial
[options.packages.find]
where = src
[options.entry_points]
pytest11 =
twister = twister2.plugin
console_scripts =
twister_tools = twister2.scripts.__main__:main
[flake8]
max-line-length = 120
ignore =
# line break before binary operator
W503,
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,
per-file-ignores =
# imported but unused
__init__.py: F401
[mypy]
ignore_missing_imports = True