mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-22 19:51:02 +02:00
Fixing test environment install
This commit is contained in:
parent
68a2cbdccf
commit
6b2356317d
3 changed files with 15 additions and 15 deletions
10
.github/workflows/pull-request.yaml
vendored
10
.github/workflows/pull-request.yaml
vendored
|
|
@ -28,19 +28,19 @@ jobs:
|
|||
run: . env/bin/activate
|
||||
|
||||
- name: Install trustgraph-base
|
||||
run: (cd trustgraph-base; pip install .)
|
||||
run: (cd trustgraph-base; pip install -e .)
|
||||
|
||||
- name: Install trustgraph-cli
|
||||
run: (cd trustgraph-cli; pip install .)
|
||||
run: (cd trustgraph-cli; pip install -e .)
|
||||
|
||||
- name: Install trustgraph-flow
|
||||
run: (cd trustgraph-flow; pip install .)
|
||||
run: (cd trustgraph-flow; pip install -e .)
|
||||
|
||||
- name: Install trustgraph-vertexai
|
||||
run: (cd trustgraph-vertexai; pip install .)
|
||||
run: (cd trustgraph-vertexai; pip install -e .)
|
||||
|
||||
- name: Install trustgraph-bedrock
|
||||
run: (cd trustgraph-bedrock; pip install .)
|
||||
run: (cd trustgraph-bedrock; pip install -e .)
|
||||
|
||||
- name: Install some stuff
|
||||
run: pip install pytest pytest-cov pytest-asyncio pytest-mock testcontainers
|
||||
|
|
|
|||
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -6,11 +6,11 @@ env/
|
|||
*.parquet
|
||||
templates/values/version.jsonnet
|
||||
trustgraph-base/trustgraph/base_version.py
|
||||
trustgraph-cli/trustgraph/cli_version.py
|
||||
trustgraph-bedrock/trustgraph/bedrock_version.py
|
||||
trustgraph-embeddings-hf/trustgraph/embeddings_hf_version.py
|
||||
trustgraph-flow/trustgraph/flow_version.py
|
||||
trustgraph-ocr/trustgraph/ocr_version.py
|
||||
trustgraph-parquet/trustgraph/parquet_version.py
|
||||
trustgraph-vertexai/trustgraph/vertexai_version.py
|
||||
trustgraph-cli/trustgraph/
|
||||
vertexai/
|
||||
18
Makefile
18
Makefile
|
|
@ -21,15 +21,15 @@ wheels:
|
|||
|
||||
packages: update-package-versions
|
||||
rm -rf dist/
|
||||
cd trustgraph && python3 -m build --outdir ../dist/
|
||||
cd trustgraph-base && python3 -m build --outdir ../dist/
|
||||
cd trustgraph-flow && python3 -m build --outdir ../dist/
|
||||
cd trustgraph-vertexai && python3 -m build --outdir ../dist/
|
||||
cd trustgraph-bedrock && python3 -m build --outdir ../dist/
|
||||
cd trustgraph-embeddings-hf && python3 -m build --outdir ../dist/
|
||||
cd trustgraph-cli && python3 -m build --outdir ../dist/
|
||||
cd trustgraph-ocr && python3 -m build --outdir ../dist/
|
||||
cd trustgraph-mcp && python3 -m build --outdir ../dist/
|
||||
cd trustgraph && python3 -m build --sdist --outdir ../dist/
|
||||
cd trustgraph-base && python3 -m build --sdist --outdir ../dist/
|
||||
cd trustgraph-flow && python3 -m build --sdist --outdir ../dist/
|
||||
cd trustgraph-vertexai && python3 -m build --sdist --outdir ../dist/
|
||||
cd trustgraph-bedrock && python3 -m build --sdist --outdir ../dist/
|
||||
cd trustgraph-embeddings-hf && python3 -m build --sdist --outdir ../dist/
|
||||
cd trustgraph-cli && python3 -m build --sdist --outdir ../dist/
|
||||
cd trustgraph-ocr && python3 -m build --sdist --outdir ../dist/
|
||||
cd trustgraph-mcp && python3 -m build --sdist --outdir ../dist/
|
||||
|
||||
pypi-upload:
|
||||
twine upload dist/*-${VERSION}.*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue