File tree Expand file tree Collapse file tree 6 files changed +6
-35
lines changed Expand file tree Collapse file tree 6 files changed +6
-35
lines changed Original file line number Diff line number Diff line change @@ -44,26 +44,26 @@ jobs:
44
44
run : |
45
45
uv venv .venv
46
46
source .venv/bin/activate
47
- uv sync --no-install-project -- group test --group dev
47
+ uv sync --group test --group dev
48
48
49
49
- name : Install dependencies (Windows)
50
50
if : runner.os == 'Windows'
51
51
run : |
52
52
uv venv .venv
53
53
.venv\Scripts\activate
54
- uv sync --no-install-project -- group test --group dev
54
+ uv sync --group test --group dev
55
55
56
56
- name : Run pytest tests (Linux/macOS)
57
57
if : runner.os != 'Windows'
58
58
run : |
59
59
source .venv/bin/activate
60
- uv run pytest tests/test_01_message_pytest.py -v --cov=hololinked --cov-report=term-missing
60
+ pytest tests/pytests-new -s -v --cov=hololinked --cov-report=term-missing
61
61
62
62
- name : Run pytest tests (Windows)
63
63
if : runner.os == 'Windows'
64
64
run : |
65
65
.venv\Scripts\activate
66
- uv run pytest tests/test_01_message_pytest.py -v --cov=hololinked --cov-report=term-missing
66
+ pytest tests/pytests-new -s -v --cov=hololinked --cov-report=term-missing
67
67
68
68
- name : Upload coverage report as artifact
69
69
uses : actions/upload-artifact@v4
Load Diff This file was deleted.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -92,8 +92,8 @@ linux = [
92
92
93
93
[tool .pytest .ini_options ]
94
94
minversion = " 8.0"
95
- addopts = " -ra --strict-markers --strict-config"
96
- testpaths = [" tests/pytest " ]
95
+ addopts = " -ra --strict-markers --strict-config --ignore=lib64 "
96
+ testpaths = [" tests/pytests-new " ]
97
97
python_files = [" test_*_pytest.py" ]
98
98
python_classes = [" Test*" ]
99
99
python_functions = [" test_*" ]
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments