Skip to content

make start_session non blocking #472

make start_session non blocking

make start_session non blocking #472

Workflow file for this run

name: Codecov
on:
push:
branches:
- main
paths:
- 'agentops/**/*.py'
pull_request:
branches:
- main
paths:
- 'agentops/**/*.py'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run tests with tox
run: tox
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true