Skip to content

Commit

Permalink
TST: Update testing workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Vini2 committed Dec 18, 2023
1 parent a1f6786 commit 78c4d95
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/testing_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [macos-12, ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: "actions/checkout@v3"
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testing_python_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
strategy:
matrix:
os: [macos-12, ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: "actions/checkout@v3"
with:
fetch-depth: 0

# Setup conda env
- uses: conda-incubator/setup-miniconda@v2
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: metacoag
environment-file: environment.yml
Expand All @@ -42,4 +42,4 @@ jobs:
- name: "Generate coverage report on ${{ matrix.os }} for Python ${{ matrix.python-version }}"
run: |
pip install pytest pytest-cov
pytest --cov=graphbin --cov-report=xml --cov-append
pytest --cov=graphbin --cov-report=xml --cov-append

0 comments on commit 78c4d95

Please sign in to comment.