forked from openlp/openlp
Replace native test runner with pytest
This commit is contained in:
parent
df538b1d70
commit
7288336ad4
@ -2,6 +2,9 @@
|
|||||||
# E722 do not use bare except, specify exception instead
|
# E722 do not use bare except, specify exception instead
|
||||||
# F841 local variable '<variable>' is assigned to but never used
|
# F841 local variable '<variable>' is assigned to but never used
|
||||||
|
|
||||||
|
[aliases]
|
||||||
|
test=pytest
|
||||||
|
|
||||||
[pep8]
|
[pep8]
|
||||||
exclude=resources.py,vlc.py
|
exclude=resources.py,vlc.py
|
||||||
max-line-length = 120
|
max-line-length = 120
|
||||||
|
3
setup.py
3
setup.py
@ -204,8 +204,9 @@ using a computer and a data projector.""",
|
|||||||
'PyMuPDF',
|
'PyMuPDF',
|
||||||
'pyodbc',
|
'pyodbc',
|
||||||
'pysword',
|
'pysword',
|
||||||
|
'pytest',
|
||||||
'python-xlib; platform_system=="Linux"'
|
'python-xlib; platform_system=="Linux"'
|
||||||
],
|
],
|
||||||
test_suite='tests',
|
setup_requires=['pytest-runner'],
|
||||||
entry_points={'gui_scripts': ['openlp = run_openlp:start']}
|
entry_points={'gui_scripts': ['openlp = run_openlp:start']}
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user