Skip to content

Commit ada6923

Browse files
Add test stub (#15)
1 parent c5fa0b1 commit ada6923

File tree

4 files changed

+13
-1
lines changed

4 files changed

+13
-1
lines changed

Diff for: python-django/apps/flags/tests/__init__.py

Whitespace-only changes.

Diff for: python-django/pyproject.toml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[tool.pytest.ini_options]
2+
DJANGO_SETTINGS_MODULE = "fsdjangotest.settings"

Diff for: python-django/requirements.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
Django==4.2.19
2-
djangorestframework==3.15.2
2+
djangorestframework==3.15.2
3+
pytest==8.3.5
4+
pytest-django==4.10.0

Diff for: python-django/tests/flags/test_flags_api.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import pytest
2+
3+
4+
pytestmark = pytest.mark.django_db
5+
6+
7+
def test_get_flags():
8+
pass

0 commit comments

Comments
 (0)