Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
afuetterer committed Aug 4, 2023
1 parent 647507b commit e21ba54
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,20 @@ on:
- '*.*.*'
pull_request:


# https://docs.github.com/en/actions/using-jobs/using-concurrency
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
db-backend: [mysql, postgres, sqlite3]
python-version: ['3.6', '3.7', '3.11']
fail-fast: false # TODO: just to demonstrate 3.6 is failing, but 3.7-3.11 are passing
fail-fast: false # TODO: demonstrate 3.6 is failing, but 3.7-3.11 are passing
services:
postgres:
image: postgres:latest
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,4 @@ version = {attr = "rdmo.__version__"}
DJANGO_SETTINGS_MODULE = "config.settings"
testpaths = ["rdmo"]
python_files = "test_*.py"
pythonpath = [".", "testing"]
pythonpath = ". testing"

0 comments on commit e21ba54

Please sign in to comment.