No description
Find a file
2025-12-09 21:35:48 +01:00
.woodpecker [ci] deactivate tests for now 2025-12-05 18:39:20 +01:00
__snapshots__/tests test(ui): Add snapshot test for our first very simple Screen 2025-12-04 20:17:56 +01:00
src/teilchensammler_cli [models] add constraints 2025-12-09 21:35:48 +01:00
.gitignore [git] keep all the sqlite files off of version control 2025-12-08 17:53:44 +01:00
justfile [deps] move ruff into special group because we can't build it on CI 2025-12-05 18:18:38 +01:00
pyproject.toml Revert "[deps] move ruff into special group because we can't build it on CI" 2025-12-05 18:40:23 +01:00
README.md [models] move Models into their own module 2025-12-08 17:38:54 +01:00
requirements.dev.txt Revert "[deps] move ruff into special group because we can't build it on CI" 2025-12-05 18:40:23 +01:00
requirements.txt Revert "[deps] move ruff into special group because we can't build it on CI" 2025-12-05 18:40:23 +01:00
tests.py test(ui): Add snapshot test for our first very simple Screen 2025-12-04 20:17:56 +01:00
uv.lock [deps] update dependencies 2025-12-08 17:54:24 +01:00

Teilchensammler

This is a little TUI based on Textual for entering new Teilchen and for searching for existing Teilchen.

Data will eventuall be stored in a SQLite database.

Running tests

uv run pytest tests.py

Observing the app's console

You will need two terminals: one for showing the console, the other to run the app.

Since we use uv the incantation is bit different from the official documenation:

In one terminal:

textual console

And in the other:

uv run textual run --dev src/teilchensammler_cli/__init__.py

Creating a new release

  • make code changes
  • add tests; make them pass
  • commit
  • git tag vX.Y.Z
  • push commits and tags

uv build will now create correctly named tar balls and wheels.