Skip to content

Commit 33615e0

Browse files
committed
change license fully to APACHE and fix pytests directory path
1 parent 1b24404 commit 33615e0

File tree

6 files changed

+6
-35
lines changed

6 files changed

+6
-35
lines changed

.github/workflows/pytest-dev.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

BSD-license.txt

Lines changed: 0 additions & 29 deletions
This file was deleted.
File renamed without changes.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ linux = [
9292

9393
[tool.pytest.ini_options]
9494
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"]
9797
python_files = ["test_*_pytest.py"]
9898
python_classes = ["Test*"]
9999
python_functions = ["test_*"]
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)