8249cd2184
* First pass * add tests * Add cancellation * fix * status changes * fixes * test fixes * tests(subscriptions): fix model ingestion tests * feat(modelingestion): rename resource and add some more tests * feat(ifcimport): use new modelingestion api * feat: wrap up new ingestion * fix: model ingestion payload and test server url * fix: test port was 3000 * fix: remove version message from model ingestion success input * fix: test subs cancelled * ci: signal public of private envv in ci --------- Co-authored-by: Jedd Morgan <45512892+JR-Morgan@users.noreply.github.com>
28 lines
383 B
TOML
28 lines
383 B
TOML
[tools]
|
|
python = "3.13.7"
|
|
uv = "0.9.11"
|
|
|
|
[settings]
|
|
experimental = true
|
|
python.uv_venv_auto = true
|
|
|
|
|
|
[tasks.install]
|
|
run= "uv sync --all-extras --all-groups"
|
|
|
|
|
|
[tasks.install_docs]
|
|
run= "uv sync --group docs"
|
|
|
|
[tasks.build_docs]
|
|
description = "Build static docs "
|
|
run = "uv run mkdocs build"
|
|
depends = ['install_docs']
|
|
|
|
[tasks.test]
|
|
run = "uv run pytest"
|
|
|
|
|
|
[env]
|
|
IS_PUBLIC = "false"
|