CoolFace
Apppublic

thinkingEverytime/QuantOracle

sourceHugging Faceupdated 6mo agoView on Hugging Face
1likes
pytest.ini24 linesDownload Raw Back to root
1# HARD CODED IMPORTANT RULE: Keep code concise and meaningful2# - Remove unwanted/junky code and unnecessary lines3# - Each line must be valuable and to the point4# - Avoid bloated, illogical code - prefer 100 clean lines over 10000 junk lines5# - Author: Rishi Gupta6# - License: MIT7 8[pytest]9testpaths = tests10python_files = test_*.py11python_classes = Test*12python_functions = test_*13addopts = -v --tb=short -m "not integration"14filterwarnings =15    ignore::DeprecationWarning16    ignore::UserWarning17markers =18    integration: network/API dependent tests (excluded by default)19    unit: deterministic offline tests20    slow: marks tests as slow (deselect with '-m "not slow"')21    latency: latency benchmarks22    accuracy: accuracy tests23    fallback: fallback chain tests24