Skip to content

Commit 018099c

Browse files
authored
Merge pull request #1124 from ddabble/fix/failing-tests
Fix failing tests
2 parents 79182d6 + 891174e commit 018099c

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ jobs:
2222
- python-version: '3.7'
2323
django-version: 'main'
2424

25+
- python-version: '3.8'
26+
django-version: 'main'
27+
28+
- python-version: '3.9'
29+
django-version: 'main'
30+
2531
- python-version: '3.11'
2632
django-version: '3.2'
2733
- python-version: '3.11'

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
django-simple-history
22
=====================
33

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

88
.. image:: https://readthedocs.org/projects/django-simple-history/badge/?version=latest

runtests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ def __getitem__(self, item):
135135
}
136136
],
137137
DEFAULT_AUTO_FIELD="django.db.models.AutoField",
138+
USE_TZ=False,
138139
)
139140
MIDDLEWARE = [
140141
"django.contrib.sessions.middleware.SessionMiddleware",

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[tox]
22
envlist =
33
py{37,38,39,310}-dj32-{sqlite3,postgres,mysql,mariadb},
4-
py{38,39,310}-dj{40,41,main}-{sqlite3,postgres,mysql,mariadb},
4+
py{38,39}-dj{40,41}-{sqlite3,postgres,mysql,mariadb},
5+
py310-dj{40,41,main}-{sqlite3,postgres,mysql,mariadb},
56
py311-dj{41,main}-{sqlite3,postgres,mysql,mariadb},
67
docs,
78
lint

0 commit comments

Comments
 (0)