检查Sphinx文档是否调用了该脚本

Check if Sphinx doc called the script(检查Sphinx文档是否调用了该脚本)
本文介绍了检查Sphinx文档是否调用了该脚本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我目前正在尝试为使用ArcGIS arcpy库的脚本生成sphinx文档。 我遇到了一个问题,因为arcpy脚本从ArcGISGui获取输入参数,所以在生成文档时,sphinx试图运行脚本。由于sphinx在没有gui的情况下调用脚本,因此这些参数为空,并导致如下traceback:
C:VersionControlPythonScriptsSourcesrc\_buildscript_export_pdf.rst:4: WARNING:     autodoc: failed to import module u'gis.scripts.script_export_pdf'; the following exception was raised:
Traceback (most recent call last):
  File "C:VersionControlPythonScriptsSourcesrclibPython27ArcGIS10.1libsite-packagessphinxextautodoc.py", line 335, in import_object
    __import__(self.modname)
  File "C:VersionControlPythonScriptsSourcesrcgisscriptsscript_export_pdf.py", line 76, in <module>
    mxd.ExportToPDF(in_mxds, out_folder, overwrite, current)
  File "C:VersionControlPythonScriptsSourcesrcgismappingmxd.py", line 315, in ExportToPDF
    _ExportToPDF(arcpy.mapping.MapDocument(m), out_folder, overwrite)
  File "C:Program Files (x86)ArcGISDesktop10.1arcpyarcpyarcobjectsmixins.py", line 609, in __init__
    assert (os.path.isfile(mxd) or (mxd.lower() == "current")), gp.getIDMessage(89004, "Invalid MXD filename")
AssertionError: Invalid MXD filename.

我在单元测试中绕过了这个问题,方法是在测试开始时设置一个变量,脚本将检查该变量并在参数中设置测试值,我想知道Shinx是否有类似的解决方法?

推荐答案

我想出的解决方案,虽然可能不太理想,但只需检查

if 'sphinx' in sys.modules:
    in_mxds = [r"C:/test.mxd"]
else:
    in_mxds = arcpy.GetParameterAsText(1)

这将确保脚本不会尝试从图形用户界面获取参数,而该参数在生成sphinx文档时并未设置。

这篇关于检查Sphinx文档是否调用了该脚本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)