Skip to content

Commit

Permalink
Documentation: spelling corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasw committed Jun 13, 2016
1 parent 568a15a commit ad8ebaf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Expand Up @@ -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()``).
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -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:
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit ad8ebaf

Please sign in to comment.