Tweaking pull request

This commit is contained in:
Cyber MacGeddon 2025-07-23 00:24:06 +01:00
parent 89837b60ba
commit 4c03f61904
2 changed files with 13 additions and 13 deletions

View file

@ -58,11 +58,11 @@ jobs:
run: python -c 'import trustgraph.model;print(dir(trustgraph.model))' run: python -c 'import trustgraph.model;print(dir(trustgraph.model))'
- name: Unit tests - name: Unit tests
run: python3 -m pytest tests/unit run: python -m pytest tests/unit
- name: Integration tests (cut the out the long-running tests) - name: Integration tests (cut the out the long-running tests)
run: python3 -m pytest tests/integration -m 'not slow' run: python -m pytest tests/integration -m 'not slow'
- name: Contract tests - name: Contract tests
run: python3 -m pytest tests/contract run: python -m pytest tests/contract

View file

@ -21,15 +21,15 @@ wheels:
packages: update-package-versions packages: update-package-versions
rm -rf dist/ rm -rf dist/
cd trustgraph && python3 -m build --sdist --outdir ../dist/ cd trustgraph && python -m build --sdist --outdir ../dist/
cd trustgraph-base && python3 -m build --sdist --outdir ../dist/ cd trustgraph-base && python -m build --sdist --outdir ../dist/
cd trustgraph-flow && python3 -m build --sdist --outdir ../dist/ cd trustgraph-flow && python -m build --sdist --outdir ../dist/
cd trustgraph-vertexai && python3 -m build --sdist --outdir ../dist/ cd trustgraph-vertexai && python -m build --sdist --outdir ../dist/
cd trustgraph-bedrock && python3 -m build --sdist --outdir ../dist/ cd trustgraph-bedrock && python -m build --sdist --outdir ../dist/
cd trustgraph-embeddings-hf && python3 -m build --sdist --outdir ../dist/ cd trustgraph-embeddings-hf && python -m build --sdist --outdir ../dist/
cd trustgraph-cli && python3 -m build --sdist --outdir ../dist/ cd trustgraph-cli && python -m build --sdist --outdir ../dist/
cd trustgraph-ocr && python3 -m build --sdist --outdir ../dist/ cd trustgraph-ocr && python -m build --sdist --outdir ../dist/
cd trustgraph-mcp && python3 -m build --sdist --outdir ../dist/ cd trustgraph-mcp && python -m build --sdist --outdir ../dist/
pypi-upload: pypi-upload:
twine upload dist/*-${VERSION}.* twine upload dist/*-${VERSION}.*
@ -124,7 +124,7 @@ JSONNET_FLAGS=-J templates -J .
update-templates: update-dcs update-templates: update-dcs
JSON_TO_YAML=python3 -c 'import sys, yaml, json; j=json.loads(sys.stdin.read()); print(yaml.safe_dump(j))' JSON_TO_YAML=python -c 'import sys, yaml, json; j=json.loads(sys.stdin.read()); print(yaml.safe_dump(j))'
update-dcs: set-version update-dcs: set-version
for graph in ${GRAPHS}; do \ for graph in ${GRAPHS}; do \