We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64d216a commit e22d192Copy full SHA for e22d192
pyproject.toml
@@ -51,3 +51,14 @@ packages = ["aocd"]
51
[project.entry-points]
52
"adventofcode.user" = {} # for user solvers
53
"adventofcode.examples" = {} # for example-parser implementations
54
+
55
+[tool.pytest.ini_options]
56
+addopts = """
57
+ --strict-markers
58
+ --disable-socket
59
+ --allow-unix-socket
60
+ --cov-branch
61
+ --cov=aocd --cov=tests
62
+ --cov-report=html --cov-report=term-missing:skip-covered"""
63
+xfail_strict = true
64
+markers = "answer_not_cached"
pytest.ini
tests/requirements.txt
@@ -8,3 +8,4 @@ pytest-raisin
8
pytest-freezer
9
pytest-socket
10
rich
11
+freezegun < 1.3 # 1.3+ doesn't play well with pytest-socket on windows
0 commit comments