Skip to content

Commit

Permalink
TST: Add a direct ASV test
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoZeke committed Aug 13, 2023
1 parent a5c01e4 commit 17cfdda
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/test_asv.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: test_asv

on:
pull_request:
push:
branches: [main]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test_asv:
runs-on: ubuntu-latest
name: test with specific asv_runner
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.10", "pypy-3.9"]
steps:
- name: Set up Python version ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: pyproject.toml
- name: Checkout
uses: actions/checkout@v3
with:
path: asv_runner
fetch-depth: 0
- name: Checkout tools repo
uses: actions/checkout@v3
with:
repository: airspeed-velocity/asv
path: asv
fetch-depth: 0
- name: Install asv
run: cd asv/ && pip install .
- name: Run asv
run: cd asv/ && pip install .
- name: Run tests with the current asv_runner
run: |
cd asv/
ASV_RUNNER="$(pwd)/../asv_runner" python -m pytest -v --timeout=300 --durations=100 test

0 comments on commit 17cfdda

Please sign in to comment.