Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/mlafarga/raccoon
Browse files Browse the repository at this point in the history
  • Loading branch information
mlafarga committed May 27, 2024
2 parents fd4a6fc + 760fb40 commit 8aadd61
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nox-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
strategy:
fail-fast: false
matrix:
# Here we manually list two nox sessions
# Here we manually list nox sessions
nox_session: ["tests-3.8", "tests-3.9", "tests-3.10", "tests-3.11"]
name: Run nox session ${{ matrix.nox_session }}
runs-on: ubuntu-latest
steps:
# (other steps before this: checkout code, install python and nox...)
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: wntrblm/nox@main
- run: nox -s "${{ matrix.nox_session }}"

Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/pytest-testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: tests
on:
push:
pull_request:
workflow_dispatch:

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# pip install -r requirements.txt
- name: Test with pytest
run: |
pip install pytest
pytest

0 comments on commit 8aadd61

Please sign in to comment.