Skip to main content

Test from HTTP interactions to dataframe processed.

Project description

https://travis-ci.com/gjeusel/pytest-vcrpandas.svg?branch=master Documentation Status https://codecov.io/gh/gjeusel/pytest-vcrpandas/branch/master/graph/badge.svg Pypi package

pytest-vcrpandas

Combine vcrpy with pandas to not only mock your HTTP interactions, but also tests your post-processing work to get a pandas DataFrame.

Usage

# test_meteo_client.py

def test_meteo_get_wind_speed(vcrpandas, client):
    start = pd.Timestamp('2018-01-01', tz='CET')
    end = pd.Timestamp('2018-02-01', tz='CET')
    with vcrpandas("meteo_get_wind_speed") as recorder:
        df = client.get_wind_speed(start, end)
        recorder(df)
# call pytest for the first time to generate samples
> pytest --vcr-record="new_episodes"

# you can now replay it:
> pytest

Behind the hood, 2 files are generated by the first run:

  • a meteo_get_wind_speed.yaml, which is the reponse obtained by the first HTTP interaction.

  • a meteo_get_wind_speed.pickle that serve to compare the formatting from the mocked response to the pandas DataFrame, types included.

Installation

pip install pytest-vcrpandas

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

pytest_vcrpandas-0.0.1-py2.py3-none-any.whl (4.9 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page