
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
pytest-fixtures
Advanced tools
Common fixtures for pytest
To use, just install it and pytest will automatically detect and load all fixtures::
pip install pytest-fixtures
To install automatically, add it to your test requirements in tox.ini or setup.py.
This package does not depend on any other packages and never will. It uses standard libraries or uses run-time imports and therefore it is lightweight to add to any project. As for which external run-time dependency a fixture needs, that is documented here and shouldn't matter as you would only use the fixtures that your project already has dependencies on.
Fixtures based on standard Python libraries
test_data
To get path, read, and write test data in `tests/data` folder, use the `test_data` fixture.
First, setup the path to test data path in `tests/conftest.py`:
.. code-block:: python
from pathlib import Path
from fixtures import TestData
TestData.BASE_PATH = Path(__file__).parent / 'data'
And then get path to data files in `tests/data` using `test_data` fixture:
.. code-block:: python
def test_integration(test_data):
obj = MyClass(test_data.path('sample.csv'))
To write out test data:
.. code-block:: python
def test_integration(test_data):
output = run_cli()
test_data.write('test_integration.output', output)
Then read the test data to assert:
.. code-block:: python
def test_integration(test_data):
output = run_cli()
expected_output = test_data.read('test_integration.output')
assert expected_output == output
Click Fixtures
--------------
Fixtures for Click <http://click.pocoo.org/>
cli_runner
To invoke, assert exit, with stdout/stderr outputs on error::
.. code-block:: python
def test_cli(cli_runner):
result = cli_runner.invoke( ... ) # Prints out stdout/stderr from result with headings
result = cli_runner.invoke_and_assert_exit(0, ... ) # Same as above and asserts exit code == 0
| PyPI Package: https://pypi.python.org/pypi/pytest-fixtures | GitHub Source: https://github.com/maxzheng/pytest-fixtures | Report Issues/Bugs: https://github.com/maxzheng/pytest-fixtures/issues | | Follow: https://twitter.com/MaxZhengX | Connect: https://www.linkedin.com/in/maxzheng | Contact: maxzheng.os @t gmail.com
FAQs
Common fixtures for pytest
We found that pytest-fixtures demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.