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:
4444 run : |
4545 uv venv .venv
4646 source .venv/bin/activate
47- uv sync --no-install-project -- group test --group dev
47+ uv sync --group test --group dev
4848
4949 - name : Install dependencies (Windows)
5050 if : runner.os == 'Windows'
5151 run : |
5252 uv venv .venv
5353 .venv\Scripts\activate
54- uv sync --no-install-project -- group test --group dev
54+ uv sync --group test --group dev
5555
5656 - name : Run pytest tests (Linux/macOS)
5757 if : runner.os != 'Windows'
5858 run : |
5959 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
6161
6262 - name : Run pytest tests (Windows)
6363 if : runner.os == 'Windows'
6464 run : |
6565 .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
6767
6868 - name : Upload coverage report as artifact
6969 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 = [
9292
9393[tool .pytest .ini_options ]
9494minversion = " 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 " ]
9797python_files = [" test_*_pytest.py" ]
9898python_classes = [" Test*" ]
9999python_functions = [" test_*" ]
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments