fixup! Issue #4 benchmark/unittest verbosity tweaks #3
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: "Benchmarks" | |
# TODO: trigger based on schedule | |
# TODO: only run subset of benchmarks | |
on: [push] | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install benchmark dependencies | |
run: | | |
python -m pip install qa/tools | |
python -m pip install -r qa/benchmarks/requirements.txt | |
- name: Test with pytest | |
run: | | |
cd qa/benchmarks | |
pytest |