summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-01-11 22:43:27 +0000
committerChris McDonough <chrism@agendaless.com>2009-01-11 22:43:27 +0000
commitb0a24149ffc4dd3b945b496e5cdb01111c8cf29a (patch)
treeda0d31fa9c46eb4e990c0df3dd116e8fa38dcd5c /CHANGES.txt
parentd69635eb6237055e8b3ccedeeaa7114a7beed057 (diff)
downloadpyramid-b0a24149ffc4dd3b945b496e5cdb01111c8cf29a.tar.gz
pyramid-b0a24149ffc4dd3b945b496e5cdb01111c8cf29a.tar.bz2
pyramid-b0a24149ffc4dd3b945b496e5cdb01111c8cf29a.zip
- Improve test coverage.
- Remove old cold which attempts to recover from trying to unpickle a ``z3c.pt`` template; Chameleon has been the templating engine for a good long time now. Running repoze.bfg against a sandbox that has pickled ``z3c.pt`` templates it will now just fail with an unpickling error, but can be fixed by deleting the template cache files.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 2bc8a3ca2..940c8d1cc 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -4,6 +4,21 @@ After 0.6.1
Features
--------
+- Tests can be run with coverage output if you've got ``nose``
+ installed in the interpreter which you use to run tests. Using an
+ interpreter with ``nose`` installed, do ``python setup.py
+ nosetests`` within a checkout of the ``repoze.bfg`` package to see
+ test coverage output.
+
+- Improve test coverage.
+
+- Remove old cold which attempts to recover from trying to unpickle a
+ ``z3c.pt`` template; Chameleon has been the templating engine for a
+ good long time now. Running repoze.bfg against a sandbox that has
+ pickled ``z3c.pt`` templates it will now just fail with an
+ unpickling error, but can be fixed by deleting the template cache
+ files.
+
- Added a ``post`` argument to the ``repoze.bfg.testing:DummyRequest``
constructor.