From ad8ebaf2150acd062d30455c390cefa4c3ac7b7b Mon Sep 17 00:00:00 2001 From: Thomas W Date: Mon, 13 Jun 2016 12:16:12 -0700 Subject: [PATCH] Documentation: spelling corrections --- CHANGELOG.rst | 4 ++-- README.rst | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 034b8be..30d8b5f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,13 +4,13 @@ Changelog 1.1.0 ----- -- Simplify dev evnironment configuration. +- Simplify dev environment configuration. - Add tox configuration for locally testing against multiple python versions. - Fix a bug in the nosetests helper implementation that was making it ignore passed in configuration. - Fix a bug that causing testtube to choke on simple method based tests. - Add an ``IGNORE_PATTERNS`` configuration option which supersedes test group - pattern matches and allows users to confiure testtube to always ignore + pattern matches and allows users to configure testtube to always ignore certain files. - Add integration tests. - Factor out threading anti-patterns from core (``time.sleep()``). diff --git a/README.rst b/README.rst index c6379c2..0f4de4d 100644 --- a/README.rst +++ b/README.rst @@ -219,7 +219,7 @@ arguments and add it to the ``PATTERNS`` list: If a custom test needs to be configurable like the builtin helpers or if it needs to make system calls, extending the base helper class -(``testtube.helpers.Helper``) and customizing the beahvior as is necessary is +(``testtube.helpers.Helper``) and customizing the behavior as is necessary is usually the simplest approach. The following is a tube.py file which defines a configureable test that outputs the file tree for the entire project each time a python file changes: @@ -253,7 +253,7 @@ Caveats ------- - The distinction between ``r'.*\.py'`` and ``r'.*\.py$'`` is significant. - Without the trailing ``$``, testtube will run tests everytime pyc + Without the trailing ``$``, testtube will run tests every time pyc files change. That's very likely to not be useful. - testtube doesn't currently reload its own configuration when it changes. If tube.py is modified, testtube will need to be restarted.