forked from taverntesting/tavern
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
95 lines (81 loc) · 1.66 KB
/
setup.cfg
File metadata and controls
95 lines (81 loc) · 1.66 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[metadata]
name = tavern
description = Simple testing of RESTful APIs
version = attr: tavern.__version__
long_description = file: README.rst
author = Michael Boulton
author_email = boulton@zoetrope.io
url = https://taverntesting.github.io/
license = MIT
license_file = LICENSE
keywords =
testing
pytest
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Framework :: Pytest
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Topic :: Utilities
Topic :: Software Development :: Testing
License :: OSI Approved :: MIT License
[options]
packages = find:
include_package_data = True
install_requires =
pyyaml
pykwalify
requests
pyjwt
python-box
future
tests_require =
pytest>=3.0.0
pytest-cov
colorlog
mock
[options.extras_require]
pytest =
pytest
[options.packages.find]
exclude =
tests
[options.entry_points]
console_scripts =
tavern-ci = tavern.entry:main
pytest11 =
tavern = tavern.testutils.pytesthook
[bdist_wheel]
universal = 1
[aliases]
test=pytest
[tool:pyflakes]
exclude = .tox,*.egg,dist,build,docs/source
show-source = true
max-line-length = 200
ignore = N802
[coverage:run]
omit =
tests/*
.eggs/*
setup.py
env/*
build/*
dist/*
[tool:pytest]
testpaths=tavern tests
addopts =
--cov-report term-missing
--cov tavern
--doctest-modules
-r xs -v --strict
-p no:logging
norecursedirs =
.git
.tox
example