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
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
10 changes: 10 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
"""
Pytest configuration file for the project.
This file helps configure global pytest settings and provides shared fixtures.
"""
import pytest
import sys
import os

# Ensure the project root directory is in the Python path
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
9 changes: 9 additions & 0 deletions tests/test_setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
"""
Basic test to verify pytest setup and project configuration.
"""
def test_pytest_setup():
"""
Simple test to confirm pytest is working correctly.
This test always passes to verify the testing framework is operational.
"""
assert True, "Pytest setup is working correctly"