Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ pyasn1==0.4.8
pyasn1-modules==0.2.8
pycryptodome==3.9.7
pylint==2.5.0
pytest==8.3.1
python-pptx==0.6.18
pytz==2020.1
requests==2.23.0
Expand All @@ -55,4 +56,4 @@ urllib3==1.25.9
Werkzeug==1.0.1
wrapt==1.12.1
xlrd==1.2.0
XlsxWriter==1.2.8
XlsxWriter==1.2.8
3 changes: 3 additions & 0 deletions tests/test_setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
def test_pytest_works():
"""Verify that pytest is set up correctly."""
assert True, "Pytest is not working correctly"