cmd报错minitest: error: argument -c/--config: expected one argument
时间: 2024-05-10 11:20:21 浏览: 83
这个错误是因为你在使用minitest时没有提供正确的配置参数。你需要提供一个配置文件的路径作为参数,例如:
```
$ minitest -c /path/to/config/file
```
如果你没有配置文件,可以使用默认配置:
```
$ minitest -c default
```
如果你已经提供了配置文件路径,但仍然出现这个错误,那么可能是路径不正确或者配置文件格式有误。请检查路径和文件内容,确保它们是正确的。
相关问题
minitest -c .\config.json -m search_test -g
As an AI language model, I cannot execute commands on your computer. Can you provide more context or information about what you are trying to achieve?
阅读全文