File tree Expand file tree Collapse file tree 2 files changed +21
-16
lines changed Expand file tree Collapse file tree 2 files changed +21
-16
lines changed Original file line number Diff line number Diff line change @@ -240,3 +240,24 @@ follow_imports = "skip"
240
240
[[tool .mypy .overrides ]]
241
241
module = " pip._vendor.requests.*"
242
242
follow_imports = " skip"
243
+
244
+ # #####################################################################################
245
+ # pytest
246
+ #
247
+
248
+ [tool .pytest .ini_options ]
249
+ addopts = " --ignore src/pip/_vendor --ignore tests/tests_cache -r aR --color=yes"
250
+ xfail_strict = true
251
+ markers = [
252
+ " network: tests that need network" ,
253
+ " incompatible_with_sysconfig" ,
254
+ " incompatible_with_venv" ,
255
+ " no_auto_tempdir_manager" ,
256
+ " unit: unit tests" ,
257
+ " integration: integration tests" ,
258
+ " bzr: VCS: Bazaar" ,
259
+ " svn: VCS: Subversion" ,
260
+ " mercurial: VCS: Mercurial" ,
261
+ " git: VCS: git" ,
262
+ " search: tests for 'pip search'" ,
263
+ ]
Original file line number Diff line number Diff line change 1
- [tool:pytest]
2
- addopts = --ignore src/pip/_vendor --ignore tests/tests_cache -r aR --color =yes
3
- xfail_strict = True
4
- markers =
5
- network: tests that need network
6
- incompatible_with_sysconfig
7
- incompatible_with_venv
8
- no_auto_tempdir_manager
9
- unit: unit tests
10
- integration: integration tests
11
- bzr: VCS: Bazaar
12
- svn: VCS: Subversion
13
- mercurial: VCS: Mercurial
14
- git: VCS: git
15
- search: tests for ' pip search'
16
-
17
1
[coverage:run]
18
2
branch = True
19
3
# Do not gather coverage for vendored libraries.
You can’t perform that action at this time.
0 commit comments