mirror of
https://github.com/katanemo/plano.git
synced 2026-06-17 15:25:17 +02:00
better names
This commit is contained in:
parent
5ba638e0e4
commit
6a16c793d8
3 changed files with 10 additions and 5 deletions
2
.github/workflows/model-server-tests.yml
vendored
2
.github/workflows/model-server-tests.yml
vendored
|
|
@ -1,4 +1,4 @@
|
|||
name: Run Model Server tests
|
||||
name: model server tests
|
||||
|
||||
on:
|
||||
push:
|
||||
|
|
|
|||
12
.github/workflows/rust_tests.yml
vendored
12
.github/workflows/rust_tests.yml
vendored
|
|
@ -1,4 +1,4 @@
|
|||
name: Rust Tests (prompt and llm gateway)
|
||||
name: rust tests (prompt and llm gateway)
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
|
@ -9,6 +9,10 @@ jobs:
|
|||
test:
|
||||
name: Test
|
||||
runs-on: ubuntu-latest
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./crates
|
||||
|
||||
steps:
|
||||
- name: Setup | Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
|
@ -20,10 +24,10 @@ jobs:
|
|||
run: rustup target add wasm32-wasi
|
||||
|
||||
- name: Build wasm module
|
||||
run: cd crates && cargo build --release --target=wasm32-wasi
|
||||
run: cargo build --release --target=wasm32-wasi
|
||||
|
||||
- name: Run unit tests
|
||||
run: cd crates && cargo test --lib
|
||||
run: cargo test --lib
|
||||
|
||||
- name: Run integration tests
|
||||
run: cd crates && cargo test --test integration
|
||||
run: cargo test --test integration
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ cd ../model_server
|
|||
poetry install 2>&1 >> ../build.log
|
||||
log starting model server
|
||||
log =====================
|
||||
touch ~/archgw_logs/modelserver.log
|
||||
poetry run archgw_modelserver restart &
|
||||
tail -F ~/archgw_logs/modelserver.log &
|
||||
model_server_tail_pid=$!
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue