Code Monkey home page Code Monkey logo

Comments (5)

emayssat-ms avatar emayssat-ms commented on August 25, 2024

Well, I wanted to be able to skip a test based on a remote command. Here the command was 'hostname -s', but it could have been anything else. Is there a way to do that?

from pytest-testinfra.

stefreak avatar stefreak commented on August 25, 2024

Doesn't @pytest.mark.testinfra_hosts already do something like that? See https://github.com/philpep/testinfra/blob/master/testinfra/test/test_backends.py

from pytest-testinfra.

pierluca avatar pierluca commented on August 25, 2024

@pytest.mark.testinfra_hosts does not work with Salt, we had to use the suggested workaround.
My team would be happy to extend @pytest.mark.testinfra_hosts to support Salt.
Could you point us in the right direction? Thanks a lot.

from pytest-testinfra.

stefreak avatar stefreak commented on August 25, 2024

Do you have an idea @philpep? :)

from pytest-testinfra.

fourjay avatar fourjay commented on August 25, 2024

FWIW, a (more ansible specific) workaround.
My use case is ansible group intersection.
I'm pretty new to python and to pytest, but this seems to be elegant.
The approach is to define a conftest.py with a fixture:

@pytest.fixture(scope='class')
    def groups(host):
    return host.ansible.get_variables()['group_names']

Then add groups to the test function parameters, and add a line like
if 'GROUP_NAME' in groups:

This avoids pytest.skip() which, for my usage is a plus.

from pytest-testinfra.

Related Issues (20)

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.