o
    /Âif  ã                   @   s    d Z ddlZejjdd„ ƒZdS )a³  Test with the following command and setup:

In pyproject.toml, include?:

```

[tool.pytest.ini_options]
addopts = "-m 'not skip_test'"
markers = [
    "skip_test: skip the test",
]
```

Now:

- both `pytest tests/test_cli.py` and `deepeval test run tests/test_cli.py` should all tests,
- `pytest tests/test_cli.py -m 'not skip_test'` should run the test, and
- `deepeval test run tests/test_cli.py -m skip_test` should run the test.

é    Nc                   C   s   d S )N© r   r   r   úG/var/www/html/corbot_env/lib/python3.10/site-packages/tests/test_cli.pyÚtest_does_run_with_override   s   r   )Ú__doc__ÚpytestÚmarkÚ	skip_testr   r   r   r   r   Ú<module>   s    