remove test/ from py.test commands

This commit is contained in:
Thomas Kriechbaumer 2016-02-16 22:15:10 +01:00
parent e2ca4ea923
commit b87797ea25
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ install:
- "pip install --user -r requirements.txt"
- "python -c \"from OpenSSL import SSL; print(SSL.SSLeay_version(SSL.SSLEAY_VERSION))\""
test_script:
- "py.test ./test/"
- "py.test"
cache:
- C:\Users\appveyor\AppData\Local\pip\cache
deploy_script:

View File

@ -53,7 +53,7 @@ mitmproxy test suite:
.. code-block:: text
. venv/bin/activate # venv\Scripts\activate.bat on Windows
py.test test
py.test
Note that the main executables for the project - ``mitmdump``, ``mitmproxy``,
``mitmweb``, ``pathod``, and ``pathoc`` - are all created within the virtualenv. After activating the
@ -76,7 +76,7 @@ requirements installed, and you can simply run the test suite:
.. code-block:: text
py.test test
py.test
Please ensure that all patches are accompanied by matching changes in the test
suite. The project tries to maintain 100% test coverage.