如何在 pytest -k 命令行选项中包含正斜杠“/”

How to include forward slash "/" in pytest -k command line option

我正在尝试使用 pytest -k 选项来过滤掉特定的测试。当过滤器包含正斜杠“/”时,过滤器不起作用并且 returns 出错。我尝试用一​​个和两个反斜杠将其转义,但仍然出现相同的错误。知道怎么做吗?

ERROR: Wrong expression passed to '-k': 
test_pinger[pingtrace/ADI/ping_topoA_ADI_US_PLEAFS_L0_ipv4.yml: 
at column 22: unexpected character "/"
$ pytest tools/test_pinger.py --testinfo topoA_PEs.yml --params_file topoA_r28_params.yml --ulog -s --collect-only -k "test_pinger[pingtrace/ADI/ping_topoA_ADI_US_PLEAFS_L0_ipv4.yml"
=============================================================================================================================== test session starts ===============================================================================================================================
platform linux -- Python 3.7.4, pytest-6.2.2, py-1.9.0, pluggy-0.13.0
rootdir: /home/as2863/pythonProjects/p1-automation, configfile: pytest.ini
plugins: csv-2.0.1, check-0.3.5, pylama-7.6.6, dependency-0.4.0, instafail-0.4.0, ordering-0.6, allure-pytest-2.8.20, repeat-0.7.0, reportportal-5.0.3
collected 18 items

<Package tools>
  <Module test_pinger.py>
    <Function test_pinger[pingtracer_topoA_L0.yml]>
    <Function test_pinger[pingtracer_topoA_L10.yml]>
    <Function test_pinger[pingtracer_topoA_ADI_L0.yml]>
    <Function test_pinger[pingtracer_topoA_ADI_L10.yml]>
    <Function test_pinger[pingtracer_topoA_AVPN_L0.yml]>
    <Function test_pinger[pingtracer_topoA_AVPN_L10.yml]>
    <Function test_pinger[pingtracer_topoA_MOW_L0.yml]>
    <Function test_pinger[pingtracer_topoA_MOW_L10.yml]>
    <Function test_pinger[new/pingtracer_topoA_US_PEs_L0.yml]>
    <Function test_pinger[pingtrace/ADI/ping_topoA_ADI_MOW_PLEAFS_L0_ipv4.yml]>
    <Function test_pinger[pingtrace/ADI/ping_topoA_ADI_MOW_PLEAFS_L0_ipv6.yml]>
    <Function test_pinger[pingtrace/ADI/ping_topoA_ADI_PEs_L0_ipv4.yml]>
    <Function test_pinger[pingtrace/ADI/ping_topoA_ADI_PEs_L0_ipv6.yml]>
    <Function test_pinger[pingtrace/ADI/ping_topoA_ADI_PEs_L10_ipv4.yml]>
    <Function test_pinger[pingtrace/ADI/ping_topoA_ADI_US_PLEAFS_L0_ipv4.yml]>
    <Function test_pinger[pingtrace/ADI/ping_topoA_ADI_US_PLEAFS_L0_ipv6.yml]>
    <Function test_pinger_mpls[pingtracer_topoA_ADI_L10.yml]>
    <Function test_pinger_mpls[pingtracer_topoA_AVPN_L10.yml]>

=========================================================================================================================== 18 tests collected in 0.34s ===========================================================================================================================
ERROR: Wrong expression passed to '-k': test_pinger[pingtrace/ADI/ping_topoA_ADI_US_PLEAFS_L0_ipv4.yml: at column 22: unexpected character "/"

(p1_netmiko_3-3-3) asilver@ubuntuP1-SYSlog-S1:~/pythonProjects/p1-automation$

-k(有点故意)不灵活——它并不意味着允许所有输入进行匹配。

就是说,有两种方法可以满足您的需求:

  1. 稍微调整一下你的-k表情:pytest -k 'test_pinger and ping_topoA_ADI_US_PLEAFS_L0_ipv4'
  2. 直接使用测试 ID (这似乎是你正在尝试的)pytest 'tools/test_pinger.py::test_pinger[pingtrace/ADI/ping_topoA_ADI_US_PLEAFS_L0_ipv4.yml]'

免责声明:我是 pytest 核心开发人员