-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest_schema.yaml
More file actions
46 lines (45 loc) · 1.5 KB
/
pytest_schema.yaml
File metadata and controls
46 lines (45 loc) · 1.5 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# -*- mode: yaml; coding: utf-8 -*-
#
# Schema for the pytest plugin for spin
pytest:
type: object
help: |
The pytest plugin provides the full pytest experience for spin.
properties:
coverage:
type: bool
help: Enable or disable code coverage analysis.
opts:
type: list
help: Additional options for the pytest command.
test_report:
type: path
help: Path to write the test report to.
coverage_opts:
type: list
help: Additional options for the coverage run.
coverage_report:
type: str
help: File to write the coverage report to.
tests:
type: list
help: List of test files or directories to include.
playwright:
type: object
help: |
Settings necessary to also run playwright tests with the pytest
plugin.
properties:
enabled:
type: bool
help: |
Should the pytest-playwright plugin be installed and
initialized.
browsers_path:
type: path
help: Path for playwright to install the browsers.
browsers:
type: list
help: |
The browsers to install and to use for running the
playwright tests.