Skip to content
This repository has been archived by the owner on May 25, 2024. It is now read-only.

Commit

Permalink
run benchmark only on python-version 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
helix-xx committed Apr 5, 2024
1 parent f0fb723 commit 96def79
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest]
include:
- { python-version: "pypy-3.10", os: windows-latest }
Expand All @@ -44,4 +44,8 @@ jobs:
- name: run tests
id: tests
run: |
if [[ "${{ matrix.python-version }}" == "3.12" ]]; then
python test/all_test.py
fi
python test/all_test.py --ignore benchmark

0 comments on commit 96def79

Please sign in to comment.