in Education by
I have a code and I need to pass the arguments like name from terminal. Here is my code and how to pass the arguments. I am getting a "File not found" kind error that I don't understand. I have tried the command in the terminal: pytest .py -almonds I should get the name printed as "almonds" @pytest.mark.parametrize("name") def print_name(name): print ("Displaying name: %s" % name) JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
In your pytest test, don't use @pytest.mark.parametrize: def test_print_name(name): print ("Displaying name: %s" % name) In conftest.py: def pytest_addoption(parser): parser.addoption("--name", action="store", default="default name") def pytest_generate_tests(metafunc): # This is called for every test. Only get/set command line arguments # if the argument is specified in the list of test "fixturenames". option_value = metafunc.config.option.name if 'name' in metafunc.fixturenames and option_value is not None: metafunc.parametrize("name", [option_value]) Then you can run from the command line with a command line argument: pytest -s tests/my_test_module.py --name abc

Related questions

0 votes
    I have a code and I need to pass the arguments like name from terminal. Here is my code and how ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 7, 2022 in Education by JackTerrance
0 votes
    I am originally a C programmer. I have seen numerous tricks and "hacks" to read many different arguments. What are ... can do this? Select the correct answer from above options...
asked Jan 30, 2022 in Education by JackTerrance
0 votes
    How do we pass command line argument in Eclipse? (a) Arguments tab (b) Variable tab (c) Cannot ... programming questions and answers pdf, java interview questions for beginners...
asked Oct 26, 2021 in Education by JackTerrance
0 votes
    I'm trying to run PHP from the command line under Windows XP. That works, except for the fact ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 25, 2022 in Education by JackTerrance
0 votes
    I'm trying to run PHP from the command line under Windows XP. That works, except for the fact ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 25, 2022 in Education by JackTerrance
0 votes
    I'm trying to run PHP from the command line under Windows XP. That works, except for the fact ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 24, 2022 in Education by JackTerrance
0 votes
    I'm trying to run PHP from the command line under Windows XP. That works, except for the fact ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 24, 2022 in Education by JackTerrance
0 votes
    Write a Java program to read two strings from command line arguments and check the equality of two strings using string function. Select the correct answer from above options...
asked Dec 9, 2021 in Education by JackTerrance
0 votes
    Question No. 6 Which of the following module is not used for parsing command line arguments automatically ? O ... argparse O getopt Select the correct answer from above options...
asked Dec 1, 2021 in Education by JackTerrance
0 votes
    Which of this method is given parameter via command line arguments? (a) main() (b) recursive() ... programming questions and answers pdf, java interview questions for beginners...
asked Oct 26, 2021 in Education by JackTerrance
0 votes
    Which of these data types is used to store command line arguments? (a) Array (b) Stack (c) String ... programming questions and answers pdf, java interview questions for beginners...
asked Oct 26, 2021 in Education by JackTerrance
0 votes
    Which class allows parsing of command line arguments? (a) Args (b) JCommander (c) Command Line (d) ... programming questions and answers pdf, java interview questions for beginners...
asked Oct 26, 2021 in Education by JackTerrance
0 votes
    What are command line arguments in C Programming?...
asked Jan 18, 2021 in Technology by JackTerrance
0 votes
    What is the first string in the argument vector w.r.t command line arguments in C?...
asked Nov 9, 2020 in Technology by JackTerrance
+1 vote
    What are command line arguments in C Programming?...
asked Nov 9, 2020 in Technology by JackTerrance
...