Skip to content

Commit

Permalink
Merge pull request #50 from basxltd/master
Browse files Browse the repository at this point in the history
Maintenance update
  • Loading branch information
kalwalkden authored Feb 1, 2020
2 parents 93cf6ed + 7bcf84d commit d370d83
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 5 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The MIT License (MIT)

Copyright (c) 2015 Florent CLAPIÉ
Copyright (c) 2020 Kal Walkden
Copyright (c) 2020 Kal Walkden, Samuel von Stachelski

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
7 changes: 3 additions & 4 deletions materializecssform/meta.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

__version__ = '1.1.16'
__version__ = "1.1.17"


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

__author__ = "Kal Walkden"
__email__ = "[email protected]"
__author__ = "Kal Walkden, Samuel von Stachelski"
__email__ = "[email protected], [email protected]"

__license__ = "MIT"
__copyright__ = "Copyright (c) 2020 Kal Walkden"
21 changes: 21 additions & 0 deletions materializecssform/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import unittest

import django
from django.conf import settings

settings.configure(
DEBUG=True,
DATABASES={"default": {"ENGINE": "django.db.backends.sqlite3", "name": ":memory:"}},
MIDDLEWARE_CLASSES=[],
INSTALLED_APPS=[],
)
django.setup()


class TestTags(unittest.TestCase):
def test_materializecss_tag(self):
from materializecssform.templatetags import materializecss # noqa


if __name__ == "__main__":
unittest.main()
8 changes: 8 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[tox]
envlist = py37

[testenv]
deps =
django
commands =
python materializecssform/tests.py

0 comments on commit d370d83

Please sign in to comment.