Skip to content

Commit

Permalink
github: add tests workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sandre35 committed Jan 22, 2024
1 parent 89ce7bc commit 9362672
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 9 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Quality

on: push

jobs:
build:
name: quality
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install dependencies
run: |
sudo apt install libsasl2-dev libldap2-dev libssl-dev
python -m pip install --upgrade pip setuptools wheel
make upgrade
- name: Run checks
run: make lint
49 changes: 49 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Tests

on: push

jobs:
build:
runs-on: ubuntu-latest

name: Python ${{ matrix.python-version }} / ${{ matrix.django }}
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
django:
- django32
- django42
- django50
exclude:
- django: django50
python-version: "3.8"
- django: django50
python-version: "3.9"
- django: django32
python-version: "3.11"
- django: django32
python-version: "3.12"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install slapd
run: sudo apt install slapd ldap-utils apparmor-utils
- name: App armor configuration for slapd
run: sudo aa-complain /usr/sbin/slapd
- name: Install dependencies
run: |
sudo apt install libsasl2-dev libldap2-dev libssl-dev
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade tox
make upgrade
- name: Run tests
run: |
tox -v -e py-${{ matrix.django }}
8 changes: 1 addition & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,7 @@ PACKAGE := ldapdb
TESTS_DIR := examples

# Error on all warnings, except in python's site.py module and distutils' imp.py module.
PYWARNINGS = -Wdefault -Werror \
-Wignore::DeprecationWarning:site:165 \
-Wignore::PendingDeprecationWarning:imp \
-Wignore::DeprecationWarning:imp \
-Wignore::PendingDeprecationWarning:distutils \
-Wignore::DeprecationWarning:distutils \
-Wignore::ImportWarning:
PYWARNINGS = -Wdefault::DeprecationWarning

default:

Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ deps =
django42: Django>=4.2,<5.0
django50: Django>=5.0,<5.1

whitelist_externals = make
allowlist_externals = make
commands = make test

[testenv:lint]
extras = dev
whitelist_externals = make
allowlist_externals = make
commands = make lint

0 comments on commit 9362672

Please sign in to comment.