Skip to content

Commit ada523c

Browse files
committed
テスト実行をpytestに移行
1 parent 7a455df commit ada523c

File tree

7 files changed

+24
-79
lines changed

7 files changed

+24
-79
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
python-version: ['3.9', '3.10', '3.11', '3.12']
18-
django-version: ['3.2', '4.2']
18+
django-version: ['4.2']
1919

2020
steps:
2121
# ソースコードをチェックアウト

beproud/__init__.py

-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +0,0 @@
1-
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
2-
try:
3-
__import__('pkg_resources').declare_namespace(__name__)
4-
except ImportError:
5-
from pkgutil import extend_path
6-
__path__ = locals()['__path__'] # make PyFlakes happy
7-
__path__ = extend_path(__path__, __name__)

beproud/django/__init__.py

-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +0,0 @@
1-
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
2-
try:
3-
__import__('pkg_resources').declare_namespace(__name__)
4-
except ImportError:
5-
from pkgutil import extend_path
6-
__path__ = locals()['__path__'] # make PyFlakes happy
7-
__path__ = extend_path(__path__, __name__)

setup.py

-3
This file was deleted.

test_settings.py

+16-11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
import os
2+
import celery
3+
14
# Django3では、標準のdjango.conf.global_settingsの定数をオーバーライドすると例外が発生する場合がある。
25
# https://github.com/django/django/blob/70035fb0444ae7c01613374212ca5e3c27c9782c/django/conf/__init__.py#L188
36
# そのため、testではdjango.conf.global_settingsを直接利用せず、このtest用settings定数を使用する。
@@ -9,20 +12,13 @@
912
'beproud.django.notify',
1013
)
1114

12-
# kombu.exceptions.EncodeError: Object of type User is not JSON serializable エラーを抑止する
13-
# (参考)
14-
# https://github.com/celery/celery/issues/5922
15-
# https://stackoverflow.com/questions/49373825/kombu-exceptions-encodeerror-user-is-not-json-serializable
16-
CELERY_TASK_SERIALIZER = "pickle"
17-
1815
DATABASES = {
1916
'default': {
2017
'ENGINE': 'django.db.backends.sqlite3',
2118
'NAME': ':memory:',
2219
}
2320
}
2421

25-
import os
2622
BASE_PATH = os.path.dirname(__file__)
2723

2824
TEMPLATES = [
@@ -33,8 +29,7 @@
3329
],
3430
},
3531
]
36-
37-
CELERY_TASK_ALWAYS_EAGER = True
32+
USE_TZ = False # For Django 5.0+
3833

3934
BPNOTIFY_MEDIA = {
4035
"news": {
@@ -55,6 +50,16 @@
5550
}
5651
BPNOTIFY_SETTINGS_STORAGE = 'beproud.django.notify.storage.db.DBStorage'
5752

58-
# The name of the class to use to run the test suite
59-
TEST_RUNNER = 'django.test.runner.DiscoverRunner'
53+
# For Celery Tests
54+
app = celery.Celery()
55+
app.config_from_object('django.conf:settings', namespace='CELERY')
56+
app.autodiscover_tasks(lambda: INSTALLED_APPS)
6057

58+
BROKER_BACKEND = 'memory'
59+
CELERY_TASK_ALWAYS_EAGER = True
60+
61+
# kombu.exceptions.EncodeError: Object of type User is not JSON serializable エラーを抑止する
62+
# (参考)
63+
# https://github.com/celery/celery/issues/5922
64+
# https://stackoverflow.com/questions/49373825/kombu-exceptions-encodeerror-user-is-not-json-serializable
65+
CELERY_TASK_SERIALIZER = "pickle"

tests.py

-46
This file was deleted.

tox.ini

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# content of: tox.ini , put in same dir as setup.py
22
[tox]
3-
envlist = py{39,310,311}-dj{32,42}-celery{52,53},py312-dj42-celery53
3+
envlist = py{39,310,311,312}-dj42-celery53
44
skipsdist = True
55

6+
[pytest]
7+
python_files = tests test_*.py *_tests.py
8+
django_find_project = false
9+
DJANGO_SETTINGS_MODULE = test_settings
10+
611
[testenv]
712
basepython =
813
py39: python3.9
@@ -15,11 +20,9 @@ deps =
1520
pytest-pythonpath
1621
setuptools
1722
six
18-
dj32: Django>=3.2,<4.0
1923
dj42: Django>=4.2,<5.0
20-
celery52: celery>=5.2,<5.3
2124
celery53: celery>=5.3,<5.4
22-
commands=python setup.py test
25+
commands=pytest {posargs}
2326

2427
# tox-gh-actionsパッケージの設定
2528
[gh-actions]

0 commit comments

Comments
 (0)