blob: 9a85de6e2a5d1665a699775bcd5a8391dce87e89 (
plain)
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
|
import subprocess
import sys
from pathlib import Path
from typing import Iterable
import pytest
from _pytest.mark.structures import ParameterSet
FILE_PATH = Path(__file__)
EXAMPLES_DIR = FILE_PATH.parent.parent / "examples"
def generate_example_cases() -> Iterable[ParameterSet]:
for example_file in EXAMPLES_DIR.glob("*.py"):
if example_file.name == "__init__.py":
# this is not an example ...
continue
yield pytest.param(example_file, id=f"{example_file.relative_to(EXAMPLES_DIR)}")
@pytest.mark.webtest
@pytest.mark.parametrize(["example_file"], generate_example_cases())
def test_example(example_file: Path) -> None:
"""
The example runs without errors.
"""
if example_file.name == "berkeleydb_example.py":
# this example requires a berkeleydb installation
pytest.skip("The BerkeleyDB example is not working correctly.")
subprocess.run([sys.executable, f"{example_file}"], check=True)
|