Giter VIP home page Giter VIP logo

Comments (2)

pdjohntony avatar pdjohntony commented on July 2, 2024

This issue is actually caused by the @pytest.mark.parametrize() decorator, which will result in multiple cassettes with different file names for a single test. The current code looks for a single cassette with a name that explicitly match the test name.

So the following test:

@pytest.mark.vcr
def test_msteams_service_emergency_location_get(mstsc)

Creates a cassette with the name:

test_msteams_service_emergency_location_get.yaml

But with the @pytest.mark.parametrize() decorator, the following test:

@pytest.mark.vcr
@pytest.mark.parametrize(
    "field, value",
    [
        ("addressDescription", "Fake Address"),
        ("addressDescription", ""),
        ("name", "Fake Location"),
        ("name", ""),
    ],
)
def test_msteams_service_emergency_location_update_bad_raises(
    mstsc, field, value, emer_addr
):

Creates 4 cassettes with the names:

test_msteams_service_emergency_location_update_bad_raises[addressDescription-].yaml
test_msteams_service_emergency_location_update_bad_raises[addressDescription-Fake Address].yaml
test_msteams_service_emergency_location_update_bad_raises[name-].yaml
test_msteams_service_emergency_location_update_bad_raises[name-Fake Location].yaml

I'm working on a fix to search for any number of cassette files that starts with the test name.

from vcrpy-cassette-mgr.

pdjohntony avatar pdjohntony commented on July 2, 2024

Fixed in 1.1.2

from vcrpy-cassette-mgr.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.