Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.

Commit c093ecc

Browse files
committed
2 parents 383b68d + ef16638 commit c093ecc

3 files changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/publish-pypi.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ jobs:
1212
pypi-release:
1313
name: PyPi Release
1414
runs-on: ubuntu-latest
15-
1615
steps:
1716
- uses: actions/checkout@v4
1817

.github/workflows/test.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- name: Run tests
2121
id: run-tests
2222
run: >
23+
uv run --frozen pytest \
2324
uv run --frozen pytest \
2425
--junitxml=pytest.xml \
2526
--cov-report=term-missing:skip-covered \
@@ -28,6 +29,7 @@ jobs:
2829
--log-level=DEBUG \
2930
--verbose
3031
32+
3133
- name: Upload coverage to Codecov
3234
uses: codecov/codecov-action@v5
3335
with:
@@ -47,8 +49,11 @@ jobs:
4749
- name: Ruff format
4850
run: uv run ruff format --check
4951

52+
run: uv run ruff format --check
53+
5054
- name: Ruff check
5155
run: uv run ruff check
56+
run: uv run ruff check
5257

5358
mypy:
5459
runs-on: ubuntu-latest

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[project]
2+
[project]
23
name = "styxsingularity"
34
version = "0.5.1"
45
description = "Singularity/Apptainer integration for Styx compiled wrappers"
@@ -24,6 +25,8 @@ docs = ["pdoc>=15.0.0"]
2425
[tool.pytest.ini_options]
2526
pythonpath = ["src"]
2627
testpaths = ["tests"]
28+
pythonpath = ["src"]
29+
testpaths = ["tests"]
2730

2831
[tool.mypy]
2932
ignore_missing_imports = true

0 commit comments

Comments
 (0)