Skip to content

Commit 2b28350

Browse files
committed
➕ Add PyTest configuration for test.
1 parent 70fbf2b commit 2b28350

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

scripts/pytest.ini

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# pytest.ini
2+
[pytest]
3+
minversion = 7.0.0
4+
addopts =
5+
; --cov=slack_mcp/
6+
; --cov-config=./.coveragerc
7+
; --cov-report=term-missing
8+
; --cov-fail-under=95
9+
-r a
10+
-vv
11+
; --reruns 1
12+
13+
log_cli = 1
14+
log_cli_level = INFO
15+
log_cli_format = %(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)
16+
log_cli_date_format=%Y-%m-%d %H:%M:%S
17+
18+
# Filter warnings
19+
filterwarnings =
20+
# Ignore coverage warning about --include being ignored
21+
ignore:--include is ignored because --source is set

0 commit comments

Comments
 (0)