Skip to content

Commit d370d83

Browse files
authored
Merge pull request #50 from basxltd/master
Maintenance update
2 parents 93cf6ed + 7bcf84d commit d370d83

File tree

4 files changed

+33
-5
lines changed

4 files changed

+33
-5
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
The MIT License (MIT)
22

33
Copyright (c) 2015 Florent CLAPIÉ
4-
Copyright (c) 2020 Kal Walkden
4+
Copyright (c) 2020 Kal Walkden, Samuel von Stachelski
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

materializecssform/meta.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
2-
__version__ = '1.1.16'
1+
__version__ = "1.1.17"
32

43

54
__version_info__ = VersionInfo._from_version_string(__version__)
@@ -10,8 +9,8 @@
109
__uri__ = "https://github.com/kalwalkden/django-materializecss-form"
1110
__doc__ = __description__ + " <" + __uri__ + ">"
1211

13-
__author__ = "Kal Walkden"
14-
__email__ = "[email protected]"
12+
__author__ = "Kal Walkden, Samuel von Stachelski"
13+
1514

1615
__license__ = "MIT"
1716
__copyright__ = "Copyright (c) 2020 Kal Walkden"

materializecssform/tests.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import unittest
2+
3+
import django
4+
from django.conf import settings
5+
6+
settings.configure(
7+
DEBUG=True,
8+
DATABASES={"default": {"ENGINE": "django.db.backends.sqlite3", "name": ":memory:"}},
9+
MIDDLEWARE_CLASSES=[],
10+
INSTALLED_APPS=[],
11+
)
12+
django.setup()
13+
14+
15+
class TestTags(unittest.TestCase):
16+
def test_materializecss_tag(self):
17+
from materializecssform.templatetags import materializecss # noqa
18+
19+
20+
if __name__ == "__main__":
21+
unittest.main()

tox.ini

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[tox]
2+
envlist = py37
3+
4+
[testenv]
5+
deps =
6+
django
7+
commands =
8+
python materializecssform/tests.py

0 commit comments

Comments
 (0)