diff --git a/README.md b/README.md index f5f5810e..d68bf5eb 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,12 @@ Read the [documentation][docs]. Invocation ---------- -`aloe` command line tool is a wrapper for the `nose` runner, configured to only -run Gherkin tests. As such, the invocation is the same as `nose`, but the +Pass the `--with-gherkin` argument to `nosetests` to run your BDD tests. You +may also pass the `--no-ignore-python` argument to run other nose discovered +tests as well. + +The `aloe` command line tool is a wrapper for the `nose` runner, configured to +only run Gherkin tests. As such, the invocation is the same as `nose`, but the following parameters are added: * `-n N[,N...]` - only run the specified scenarios (by number, 1-based) in each diff --git a/setup.py b/setup.py index 334e176a..5b7b8552 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,9 @@ include_package_data=True, entry_points={ + 'nose.plugins.0.10': [ + 'aloe = aloe.plugin:GherkinPlugin', + ], 'console_scripts': [ 'aloe = aloe:main', ],