我有很多Tavern测试文件,都需要以某种方式在文件系统中进行组织:
.
+-- common.yaml
+-- tests
+-- test-category-foo
| +--test_1.tavern.yaml
| +--test_2.tavern.yaml
| +--test_3.tavern.yaml
+-- test-category-bar
+--test_1.tavern.yaml
+--test_2.tavern.yaml
+--test_3.tavern.yaml
所有这些测试都将文件common.yaml
用于某些配置变量,例如:
[...]
includes:
- !include ../../common.yaml
[...]
我想停止使用其相对路径来引用该文件,而是使用绝对路径,但是我找不到任何方法。
./common.yaml
不起作用,{rootdir}/common.yaml
不起作用,