A nose plugin that can detect tests making external http calls. Example output:
$ nosetests -v --with-detecthttp myapp/
test_that_makes_request ... ok
test_with_no_request ... ok
======================================================================
FAIL: Tests made external http calls
----------------------------------------------------------------------
- myapp.tests.AppTest:
test_that_makes_request:
GET http://example.com
----------------------------------------------------------------------
Ran 2 tests in 0.001s
FAILED (failures=1)
Sometimes, you want to ignore hosts besides localhost. For example, you might be running tests in a containerized environment where dynamodb has the hostname dynamodb and mysql has the hostname mysql. To ignore these hosts, the –vcr-ignore-host option:
nosetests -v --with-detecthttp --vcr-ignore-host=www.example.com app/ test_one (app.tests.ExternalTestCase) ... ok test_two (app.tests.ExternalTestCase) ... ok ---------------------------------------------------------------------- Ran 2 tests in 0.042s OK
Under the hood, this wraps every test in a separate VCR.py cassette. Since VCR.py’s hooks are in the stdlib, this approach won’t detect requests made with clients like PycURL.
History
0.1.1
released 2014-11-24
initial release
Release files for nose-detecthttp 0.2.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| nose-detecthttp-0.2.0.tar.gz | 4.9 kB | Details |
Release files / nose-detecthttp-0.2.0.tar.gz
| Download URL | nose-detecthttp-0.2.0.tar.gz |
|---|---|
| Size | 4.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
1285c4fdc6bbc9d7b27a4a36b9d624f0cdfe9dbfecaa4896cd75c7e773cb4c07
|
|
BLAKE2b-256 checksum How to use checksums |
b116bdc9a5a8e20c3de7f76db889327f17e508ef614d0def7ba44221b3f0ab15
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |