运行 mut.py 时遇到错误:“mut.py:错误:无法识别的参数”

Encountering an error when running mut.py: "mut.py: error: unrecognized arguments"

提问人:DeReK YuEn 提问时间:4/24/2023 最后编辑:CowDeReK YuEn 更新时间:4/24/2023 访问量:59

问:

当我尝试运行 mut.py 时遇到此错误

C:\Pprogs>mut.py --dcmotor_pid_control --dcmotor_tests -m
usage: mut.py [-h] [--version] [--target TARGET [TARGET ...]] [--unit-test UNIT_TEST [UNIT_TEST ...]] [--runner RUNNER]
              [--report REPORT_FILE] [--report-html DIR_NAME] [--timeout-factor TIMEOUT_FACTOR] [--show-mutants] [--quiet]
              [--debug] [--colored-output] [--disable-stdout] [--experimental-operators] [--operator OPERATOR [OPERATOR ...]]
              [--disable-operator OPERATOR [OPERATOR ...]] [--list-operators] [--path DIR] [--percentage PERCENTAGE] [--coverage]
              [--order ORDER] [--hom-strategy HOM_STRATEGY] [--list-hom-strategies] [--mutation-number MUTATION_NUMBER]
mut.py: error: unrecognized arguments: --dcmotor_pid_control --dcmotor_tests

我的预期结果是“[*] 开始突变过程:

  • 目标: dcmotor_pid_control
  • 测试:dcmotor_tests [*]所有测试均通过:'
测试 python-unittest 突变测试

评论

0赞 Community 4/24/2023
请澄清您的具体问题或提供其他详细信息以准确说明您的需求。正如目前所写的那样,很难确切地说出你在问什么。
0赞 Cow 4/24/2023
从字面上看,它在用法中说你可以使用什么参数。您正在尝试的两个参数都不在有效参数列表中。

答: 暂无答案