test setup failed file C:\Users\86157\PycharmProjects\pythonProject8\39.py, line 17 def test_mapper(sample): E fixture 'sample' not found > available fixtures: anyio_backend, anyio_backend_name, anyio_backend_options, cache, capfd, capfdbinary, caplog, capsys, capsysbinary, doctest_namespace, monkeypatch, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory > use 'pytest --fixtures [testpath]' for help on them.
时间: 2024-03-29 15:38:09 浏览: 254
Global_Mapper-course.zip_Global_Mapper_global mapper_globlemap_g
5星 · 资源好评率100%
根据你的描述,这看起来像是一个 pytest 测试文件中的错误。错误信息显示在第17行中定义的 `test_mapper` 函数所需的 `sample` fixture 未找到。你需要在你的测试文件中定义 `sample` fixture 或者检查是否拼写错误。你可以通过运行 `pytest --fixtures [testpath]` 命令来查看可用的 fixtures,以及它们在哪些文件中定义。如果你需要更多的帮助,可以提供更多的代码细节。
阅读全文