File tree 3 files changed +4
-12
lines changed
3 files changed +4
-12
lines changed Original file line number Diff line number Diff line change 7
7
# under the terms of the MIT License; see LICENSE file for more details.
8
8
9
9
[pytest]
10
- addopts = --pep8 --ignore =docs --cov =invenio --cov-report =term-missing
11
- filterwarnings = ignore::pytest.PytestDeprecationWarning
10
+ addopts = --isort --pydocstyle --pycodestyle --ignore =docs --cov =invenio --cov-report =term-missing
Original file line number Diff line number Diff line change 7
7
# Invenio is free software; you can redistribute it and/or modify it
8
8
# under the terms of the MIT License; see LICENSE file for more details.
9
9
10
- pydocstyle invenio && \
11
- isort invenio tests --check-only --diff && \
12
10
check-manifest --ignore " .travis-*" && \
13
11
sphinx-build -qnNW docs docs/_build/html && \
14
- python setup.py test && \
12
+ pytest && \
15
13
sphinx-build -qnNW -b doctest docs docs/_build/doctest
Original file line number Diff line number Diff line change 15
15
readme = open ('README.rst' ).read ()
16
16
17
17
tests_require = [
18
- 'pytest-invenio>=1.3.2 ,<1.4 .0' ,
18
+ 'pytest-invenio>=1.4.0 ,<1.5 .0' ,
19
19
]
20
20
21
21
db_version = '>=1.0.5,<1.1.0'
77
77
],
78
78
# Docs and test dependencies
79
79
'docs' : [
80
- 'Sphinx>=1.5.1 ' ,
80
+ 'Sphinx>=3,<4 ' ,
81
81
],
82
82
'tests' : tests_require ,
83
83
}
90
90
extras_require ['all' ].extend (reqs )
91
91
92
92
93
- setup_requires = [
94
- 'pytest-runner>=3.0.0,<5' ,
95
- ]
96
-
97
93
install_requires = [
98
94
'invenio-app>=1.3.0,<1.4.0' ,
99
95
'invenio-base>=1.2.3,<1.3.0' ,
128
124
entry_points = {},
129
125
extras_require = extras_require ,
130
126
install_requires = install_requires ,
131
- setup_requires = setup_requires ,
132
127
tests_require = tests_require ,
133
128
classifiers = [
134
129
'Environment :: Web Environment' ,
You can’t perform that action at this time.
0 commit comments