Skip to content

Commit

Permalink
Merge pull request #1124 from ddabble/fix/failing-tests
Browse files Browse the repository at this point in the history
Fix failing tests
  • Loading branch information
ddabble authored Feb 10, 2023
2 parents 79182d6 + 891174e commit 018099c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ jobs:
- python-version: '3.7'
django-version: 'main'

- python-version: '3.8'
django-version: 'main'

- python-version: '3.9'
django-version: 'main'

- python-version: '3.11'
django-version: '3.2'
- python-version: '3.11'
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
django-simple-history
=====================

.. image:: https://github.com/jazzband/django-simple-history/workflows/build/badge.svg?branch=master
:target: https://github.com/jazzband/django-simple-history/actions?workflow=build
.. image:: https://github.com/jazzband/django-simple-history/actions/workflows/test.yml/badge.svg
:target: https://github.com/jazzband/django-simple-history/actions/workflows/test.yml
:alt: Build Status

.. image:: https://readthedocs.org/projects/django-simple-history/badge/?version=latest
Expand Down
1 change: 1 addition & 0 deletions runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ def __getitem__(self, item):
}
],
DEFAULT_AUTO_FIELD="django.db.models.AutoField",
USE_TZ=False,
)
MIDDLEWARE = [
"django.contrib.sessions.middleware.SessionMiddleware",
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[tox]
envlist =
py{37,38,39,310}-dj32-{sqlite3,postgres,mysql,mariadb},
py{38,39,310}-dj{40,41,main}-{sqlite3,postgres,mysql,mariadb},
py{38,39}-dj{40,41}-{sqlite3,postgres,mysql,mariadb},
py310-dj{40,41,main}-{sqlite3,postgres,mysql,mariadb},
py311-dj{41,main}-{sqlite3,postgres,mysql,mariadb},
docs,
lint
Expand Down

0 comments on commit 018099c

Please sign in to comment.