Skip to content

Added tutorial example_pytorch_activation_threshold_search #4382

Added tutorial example_pytorch_activation_threshold_search

Added tutorial example_pytorch_activation_threshold_search #4382

Workflow file for this run

name: Run Common Tests
on:
workflow_dispatch: # Allow manual triggers
schedule:
- cron: 0 0 * * *
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Python 3
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-mock
pip check
- name: Run unittests
run: python -m unittest discover tests/common_tests -v
- name: Run pytest
run: pytest tests_pytest/common