File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,6 @@ ignore = [
127127 " E741" ,
128128 " FBT003" ,
129129 " PD011" ,
130- " PD901" ,
131130 " PIE790" , # See https://github.com/astral-sh/ruff/issues/10538
132131 " PT001" ,
133132 " PT003" ,
Original file line number Diff line number Diff line change 1+ import os
2+
3+ # If this envvar is set, Hypothesis loads the CI profile. We can't combine that
4+ # with hypofuzz, since the CI profile sets derandomize=True, which hypofuzz
5+ # skips during collection.
6+ #
7+ # This has to be changed at the os.environ level, instead of doing
8+ # settings.load_profile("default"), because pytest collection and subprocesses
9+ # inherit the current os.environ and would think themselves as in CI.
10+ os .environ .pop ("__TOX_ENVIRONMENT_VARIABLE_ORIGINAL_CI" , None )
Original file line number Diff line number Diff line change @@ -48,10 +48,6 @@ xfail_strict = True
4848addopts =
4949 -Werror
5050 --tb =short
51- # --cov=hypofuzz
52- # --cov-branch
53- # --cov-report=term-missing:skip-covered
54- # --cov-fail-under=100
5551
5652[coverage:report]
5753exclude_lines =
You can’t perform that action at this time.
0 commit comments