pytest-cmake
pytest-cmake copied to clipboard
Pytest module for CMake
It is time. https://www.python.org/doc/sunset-python-2/
It would be useful to have the ability to pass any relevant argument to the Pytest command. https://docs.pytest.org/en/7.1.x/reference/reference.html#command-line-flags
When a test is [embedded within a class](https://docs.pytest.org/en/7.1.x/getting-started.html#group-multiple-tests-in-a-class), the `TRIM_FROM_NAME` option from the "pytest_discover_tests" function applies to the class name instead of the method name. ```python class TestWorld: def test_greet(self):...
Is there a way to add custom property (for example LABELS or WORKING_DIRECTORY) to each of the tests, added by `pytest_discover_tests`? Looks like my tests want to be launched in...
I had marked a test as skip with the skip decorator available in Pytest refer: https://docs.pytest.org/en/stable/how-to/skipping.html#skipping-test-functions ```python # test_example.py import pytest # Test currently broken @pytest.mark.skip(reason="Bug: Failing due to config...