Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
# Test in an isolated Python environment.
# uv python pin <version> to set the version.
test:
(env -u PYTHONPATH uv run --isolated --python 3.13 python -m pytest)
(env -u PYTHONPATH uv run --isolated --python 3.13 \
--with petl --with pytest Python -m pytest)

test-all:
for V in 3.7 3.8 3.9 3.10 3.11 3.12 3.13 ; do \
(env -u PYTHONPATH uv run --isolated --python $$V python -m pytest) ; \
(env -u PYTHONPATH uv run --isolated --python $$V \
--with petl --with pytest Python -m pytest) \
done
4 changes: 2 additions & 2 deletions beangulp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,5 +326,5 @@ def cli(ctx):

self.cli = cli

def __call__(self):
return self.cli()
def __call__(self, **kwargs):
return self.cli(**kwargs)