small fix to release announcement

This commit is contained in:
holger krekel 2011-11-18 18:45:15 +00:00
parent 6b4e6eee09
commit 48e6823c7a
2 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ clean:
-rm -rf $(BUILDDIR)/*
install: html
@rsync -avz _build/html/ pytest.org:/www/pytest.org/2.2.0.dev7
@rsync -avz _build/html/ pytest.org:/www/pytest.org/2.2.0
installpdf: latexpdf
@scp $(BUILDDIR)/latex/pytest.pdf pytest.org:/www/pytest.org/latest

View File

@ -5,9 +5,9 @@ pytest-2.2.0 is a test-suite compatible release of the popular
py.test testing tool. Plugins might need upgrades. It comes
with these improvements:
* more powerful parametrization of tests:
* easier and more powerful parametrization of tests:
- new @pytest.mark.parametrize decorator for running test functions
- new @pytest.mark.parametrize decorator to run tests with different arguments
- new metafunc.parametrize() API for parametrizing arguments independently
- see examples at http://pytest.org/latest/example/parametrize.html
- NOTE that parametrize() related APIs are still a bit experimental