forked from aboutcode-org/vulnerablecode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
57 lines (47 loc) · 803 Bytes
/
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
[metadata]
license_files =
NOTICE
apache-2.0.LICENSE
README.rst
[aliases]
pypi_release = clean --all sdist bdist_wheel register upload
release = clean --all sdist bdist_wheel
[tool:pytest]
DJANGO_SETTINGS_MODULE = vulnerablecode.settings
markers =
webtest: marker for tests which require internet connection.
testpaths =
vulnerabilities
vulnerablecode
norecursedirs =
.git
bin
dist
build
_build
dist
local
ci
docs
man
share
samples
.cache
.settings
Include
include
Lib
lib
lib64
Scripts
thirdparty
tmp
vulnerabilities/tests/test_data
python_files = *.py
python_classes=Test
python_functions=test
addopts =
-rfEsxXw
--strict
--ignore setup.py
--doctest-modules