Python Unit Testing With Pytest 2 - Using Options with Pytest

Поділитися
Вставка
  • Опубліковано 24 гру 2024

КОМЕНТАРІ • 6

  • @ProgrammingKnowledge
    @ProgrammingKnowledge  6 років тому +3

    Gist of code I used in this video - gist.github.com/pknowledge/c1f1edaf2dbad7146bb82d37abd56bab

    • @danielphd5072
      @danielphd5072 6 років тому +1

      Hello Programming Knowledge, I subscribed since long time to your channel. I followed many of your excellent videos about Qt C++. I am searching , since long time, a serie of video about C++ Unit Testing. Could you do that please(for windows, codeblocks or Qt. I think there is Google Test) ? I would be thankful.

  • @simonsouvannarat
    @simonsouvannarat 4 роки тому +1

    great tutorial, really enjoyed it

  • @Indian-fh8hf
    @Indian-fh8hf 5 років тому +1

    Can you make video on SELENIUM Webdriver with PYTEST Framework

  • @ulfgj
    @ulfgj 4 роки тому +2

    why do i get a warning on @pytest.mark.number when running "pytest -v -m number" ?
    Unknown pytest.mark.number - is this a typo? You can register custom marks to avoid this warning - for details, see docs.pytest.org/en/latest/mark.html
    PytestUnknownMarkWarning,
    ...

    • @aashishadhikari8144
      @aashishadhikari8144 3 роки тому +3

      Its too late for you but might help sby in the future --> You need to create a .ini file and register the custom mark for number (also string if you use that as well). It is very easy and can Google it.