A simple plugin to disable network on socket level.
Project description
pytest-network
A simple pytest plugin to disable network on socket level.
Installation
$ pip install pytest-network
Usage
pytest-network has a flag --disable-network that will raise an error
if tests will try to use socket.socket.connect
You can use it directly like:
$ python3 -m pytest --disable-network
or add this flag as the default behavior in your pytest.ini:
[pytest]
addopts = --disable-network
Also you can directly disable network:
import requests
def test_network_request_raises_error(disable_network):
response = requests.get('https://github.com') # this will raise an exception
assert response.status_code == 200
or directly enable (if you have default --disable-network flag):
import requests
def test_network_request_is_ok(disable_network):
response = requests.get('https://github.com')
assert response.status_code == 200 # this will pass
Development
To setup development environment you must first create a virtual environment. For example:
$ python3.8 -m venv <venv-name>
After that install all requirements:
$ pip install -r requirements.txt
And install plugin itself (inside project directory and virtual environment):
$ pip install -e .
Check that tests are running:
$ make test
Contributing
We would love you to contribute to our project. It's simple:
- Create an issue with bug you found or proposal you have. Wait for approve from maintainer.
- Create a pull request. Make sure all checks are green.
- Fix review comments if any.
- Be awesome.
Here are useful tips:
- You can run all checks and tests with make check. Please do it before TravisCI does.
- We use BestDoctor python styleguide. Sorry, styleguide is available only in Russian for now.
- We respect Django CoC. Make soft, not bullshit.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pytest_network-0.0.1.tar.gz.
File metadata
- Download URL: pytest_network-0.0.1.tar.gz
- Upload date:
- Size: 2.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b109e2ad27f4ab0f13c1796a9b419bab1d503ea3b5ae3ca37363486ccceaa3f
|
|
| MD5 |
ff90ac6c57611f1fa4a4d651fe074a3f
|
|
| BLAKE2b-256 |
8cf22b381c56e0dbc7404fb104277bc731865786db7c005351441561ec1a9e25
|