Initial commit: Market Trends Scraper

This commit is contained in:
Dev
2025-09-11 17:46:14 +03:00
commit 4ddcde68d4
17 changed files with 3049 additions and 0 deletions

32
pytest.ini Normal file
View File

@@ -0,0 +1,32 @@
[tool:pytest]
# Python test discovery settings
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Output formatting
addopts =
--verbose
--tb=short
--strict-markers
--disable-warnings
--cov=src
--cov-report=term-missing
--cov-report=html:htmlcov
--cov-fail-under=80
# Custom markers
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
integration: marks tests as integration tests
unit: marks tests as unit tests
web: marks tests that require web access
# Minimum Python version
minversion = 6.0
# Filter warnings
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning