0
運行模塊級py.test燈具說我有這樣的不上的每個子模塊
$ tree
.
├── A
│ ├── __init__.py
│ ├── conftest.py
│ ├── test_set_1.py
│ └── test_set_2.py
├── B
│ ├── __init__.py
│ ├── conftest.py
│ ├── test_set_1.py
│ └── test_set_2.py
├── C
│ ├── __init__.py
│ ├── conftest.py
│ ├── test_set_1.py
│ └── test_set_2.py
├── conftest.py
├── pytest.ini
我想定義一個pytest
夾具,我可以指定一次特定運行的目錄結構頂層模塊(A
,B
,或C
),卻一次也沒有爲每個子模塊(test_set_1.py
,test_set_2.py
等)
我怎樣才能做到這一點?我可以以某種方式在__init__.py
文件中注入這些依賴關係嗎?