Skip to content

Commit e642a10

Browse files
committed
pytest action
1 parent ef0395e commit e642a10

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,14 @@ jobs:
2525
uses: actions/setup-python@v5
2626
with:
2727
python-version: ${{ matrix.python-version }}
28+
cache: pip
2829

2930
- name: Install dependencies
3031
run: |
3132
python -m pip install --upgrade pip
32-
pip install -e .[dev]
33+
pip install -e ".[dev]"
3334
3435
- name: Run pytest
35-
run: |
36-
pytest
36+
env:
37+
PYTHONPATH: src
38+
run: pytest

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ dependencies = [
1414
"sqlalchemy>=2.0.45",
1515
]
1616

17+
[project.urls]
18+
Homepage = https://AustralianCancerDataNetwork.github.io/orm-loader"
19+
Documentation = "https://AustralianCancerDataNetwork.github.io/orm-loader"
20+
Repository = "https://github.com/AustralianCancerDataNetwork/orm-loader"
21+
Issues = "https://github.com/AustralianCancerDataNetwork/orm-loader/issues"
22+
1723
[build-system]
1824
requires = ["uv_build>=0.9.2,<0.10.0"]
1925
build-backend = "uv_build"

0 commit comments

Comments
 (0)