forked from Drakkar-Software/Triangular-Arbitrage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
31 lines (29 loc) · 753 Bytes
/
Copy pathpytest.ini
File metadata and controls
31 lines (29 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[tool:pytest]
minversion = 6.0
addopts =
-ra
-q
--strict-markers
--strict-config
--disable-warnings
--cov=triangular_arbitrage
--cov-report=term-missing
--cov-report=html
--benchmark-skip
testpaths = tests
python_files = test_*.py
python_functions = test_*
python_classes = Test*
markers =
unit: Unit tests
integration: Integration tests
performance: Performance/benchmark tests
slow: Slow tests
requires_network: Tests that require network access
requires_credentials: Tests that require API credentials
# Async test configuration
asyncio_mode = auto
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
ignore:function ham\(\) is deprecated:UserWarning