Skip to content

Commit

Permalink
Removing 3.8 testing
Browse files Browse the repository at this point in the history
  • Loading branch information
nv-braf committed Jun 6, 2024
1 parent c1acbe1 commit 15a2ca8
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/python-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,21 +39,21 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-22.04"]
python-version: ["3.8", "3.11"]
python-version: ["3.11"]
env:
SKIP_GPU_TESTS: 1

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .
- name: Test with unittest
run: |
pip install unittest-parallel
python3 -m unittest_parallel -v -s ./tests -t .
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .
- name: Test with unittest
run: |
pip install unittest-parallel
python3 -m unittest_parallel -v -s ./tests -t .

0 comments on commit 15a2ca8

Please sign in to comment.