Skip to content

Developer Notes⚓︎

Local Development⚓︎

git clone https://github.com/kyleking/tail-jsonl.git
cd tail-jsonl
poetry install --sync
poetry run calcipy-pack pack.install-extras

# See the available tasks
poetry run calcipy
# Or use a local 'run' file (so that 'calcipy' can be extended)
./run

# Run the default task list (lint, auto-format, test coverage, etc.)
./run main

# Make code changes and run specific tasks as needed:
./run lint.fix test

Publishing⚓︎

For testing, create an account on TestPyPi. Replace ... with the API token generated on TestPyPi or PyPi respectively

poetry config repositories.testpypi https://test.pypi.org/legacy/
poetry config pypi-token.testpypi ...

./run main pack.publish --to-test-pypi
# If you didn't configure a token, you will need to provide your username and password to publish

To publish to the real PyPi

poetry config pypi-token.pypi ...
./run release

# Or for a pre-release
./run release --suffix=rc

Current Status⚓︎

File Statements Missing Excluded Coverage
tail_jsonl/__init__.py 4 0 0 100.0%
tail_jsonl/_private/__init__.py 0 0 0 100.0%
tail_jsonl/_private/core.py 59 4 0 89.9%
tail_jsonl/_runtime_type_check_setup.py 13 0 37 100.0%
tail_jsonl/config.py 24 0 0 100.0%
tail_jsonl/scripts.py 19 1 20 87.0%
Totals 119 5 57 92.4%

Generated on: 2025-11-21