Skip to content

Merge pull request #226 from dbpunk-labs/dependabot/pip/ipykernel-6.29.3 #581

Merge pull request #226 from dbpunk-labs/dependabot/pip/ipykernel-6.29.3

Merge pull request #226 from dbpunk-labs/dependabot/pip/ipykernel-6.29.3 #581

Workflow file for this run

name: backend testing
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
#runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: |
WS_DIR=`pwd`
bash start_sandbox.sh
cd ${WS_DIR}/memory
pytest tests/*.py
cd ${WS_DIR}/agent
pytest tests/*.py
cd ${WS_DIR}/sdk
pytest tests/*.py
cd ${WS_DIR}/kernel
pytest tests/*.py
cd ${WS_DIR}/chat
pytest tests/*.py
- uses: actions/upload-artifact@v3
if: failure()
with:
name: log-artifact
path: |
sandbox/agent/*.log
sandbox/kernel/*.log