-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
61 lines (56 loc) · 1.68 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
[metadata]
name = dvtests
version = 0.1.0
author = Stefan Kasberger
author_email = mail@stefankasberger.at
url = https://github.com/gdcc/dataverse_tests
description = Dataverse tests
long_description = file: README.md, CHANGELOG.rst, LICENSE.rst
long_description_content_type = text/markdown
license_files = LICENSE.txt
keywords = dataverse, testing, selenium, pyDataverse
license = BSD 3-Clause License
classifiers =
Development Status :: 3 - Alpha
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3 :: Only
Natural Language :: English
[options]
package_dir =
= src
packages =
dvtests
dvtests.testing
dvtests.testing.default
dvtests.testing.custom
dvtests.testing.custom.aussda_production
dvtests.utils
[tool:pytest]
testpaths = tests
addopts = -v
markers =
v4_18_1: mark test as working for Dataverse v4.18.1
v4_20: mark test as working for Dataverse v4.20
v5_2: mark test as working for Dataverse v5.2
v5_6: mark test as working for Dataverse v5.6
v5_7: mark test as working for Dataverse v5.7
utils: mark test which need utils generated data to be executed
selenium: mark test as using selenium frontend testing
smoke: mark test as smoke tests
[flake8]
max-line-length = 88
ignore = E129,E203,E501,W503,S101
exclude =
.egg
[pylint]
max-line-length = 88
[mypy]
ignore_missing_imports = True