aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/tests/test_config.py
Commit message (Collapse)AuthorAgeFilesLines
* Apply `pyupgrade --py3-plus` to remove Python 2 compatibility code.Ben Sturmfels2021-03-051-2/+1
|
* Support Unicode characters in configuration valuesSimen Heggestøyl2017-10-161-1/+3
| | | | | | | Prior to this commit, using a Unicode character in a configuration string would result in a `UnicodeDecodeError` being raised. Supporting Unicode characters is especially useful in user-facing configuration strings, such as `html_title`.
* Reverting "Always activate testing in every test module ever."Christopher Allan Webber2013-05-171-3/+0
| | | | | | Revert "Always activate testing in every test module ever." This reverts commit 0536306048daa0970d2e43411ba2a9bf073e570e.
* Always activate testing in every test module ever.Christopher Allan Webber2013-05-161-0/+3
| | | | Kind of a dorky way to implement this, but...
* Better Py3 compat: d.has_key(k) -> k in dElrond2013-01-301-1/+1
| | | | | | | | py3 does not have dict.has_key any more. You have to use "key in dict" instead. As that works in python2 as well, let's use that. Also some small bits of pep8.
* Fix tests given recent celery "case" changeChristopher Allan Webber2012-02-281-4/+4
|
* It's 2012 all up in hereChristopher Allan Webber2012-02-021-1/+1
|
* 508. Updates copyright/license informationWill Kahn-Greene2011-09-011-1/+1
|
* Move config.py to init/Elrond2011-07-021-1/+1
| | | | | | | Some simple changes needed to do that. The interesting question left: Should config_spec.ini also be moved?
* Tests for mediagoblin.config functionsChristopher Allan Webber2011-06-181-0/+97
Tests for: - read_mediagoblin_config() - generate_validation_report()