Skip to content

Commit e98f8c2

Browse files
committed
adding docker test
1 parent 0d991b0 commit e98f8c2

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.12.10

Makefile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,19 @@ docs:
1616
test:
1717
@uvx tox -p
1818

19+
test-isolation: tox.ini
20+
@docker run --rm -it \
21+
-v .:/app \
22+
ghcr.io/astral-sh/uv:bookworm-slim \
23+
sh -c '\
24+
mkdir /app-cloned && \
25+
cp -a /app/. /app-cloned && \
26+
cd /app-cloned && \
27+
export PATH=/root/.local/bin:$$PATH && \
28+
uv python install 3.8 3.9 3.10 3.12 && \
29+
uvx --with . tox -p \
30+
'
31+
1932
version:
2033
@uvx bump-my-version bump --allow-dirty --verbose minor --commit --tag
2134

0 commit comments

Comments
 (0)