Convert to Triton Punica kernels #172
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python Client Tests | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/client-tests.yaml" | |
- "clients/python/**" | |
jobs: | |
run_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.9 | |
- name: Install | |
run: | | |
cd clients/python && pip install . | |
- name: Run tests | |
run: | | |
pip install pytest pytest-asyncio | |
make python-client-tests |