Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-31146: Add cp_verify to lsst_distrib #3

Merged
merged 5 commits into from
Jul 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- python -*-
from lsst.sconsUtils import scripts
scripts.BasicSConstruct("cp_verify")
scripts.BasicSConstruct("cp_verify", disableCc=True, noCfgFile=True)
3 changes: 0 additions & 3 deletions doc/SConscript

This file was deleted.

14 changes: 8 additions & 6 deletions doc/conf.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
"""Sphinx configuration file for an LSST stack package.

This configuration only affects single-package Sphinx documentation builds.
For more information, see:
https://developer.lsst.io/stack/building-single-package-docs.html
"""

from documenteer.sphinxconfig.stackconf import build_package_configs
import lsst.cp.verify

from documenteer.conf.pipelinespkg import *

_g = globals()
_g.update(build_package_configs(
project_name='lsst.cp.verify',
version=lsst.cp.verify.version.__version__))

project = "cp_verify"
html_theme_options["logotext"] = project
html_title = project
html_short_title = project
33 changes: 32 additions & 1 deletion doc/lsst.cp.verify/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,35 @@
lsst.cp.verify
#######################

.. Calibration verification package.
.. This module is used to perform a series of tests, defined by DMTN-101, to verify the quality of calibration products produced by `cp_pipe`.

Contributing
============

``lsst.cp.verify`` is developed at https://github.com/lsst/cp_verify.
You can find Jira issues for this module under the `cp_verify <https://jira.lsstcorp.org/issues/?jql=project%20%3D%20DM%20AND%20component%20%3D%20cp_verify>`_ component.

.. If there are topics related to developing this module (rather than using it), link to this from a toctree placed here.

.. .. toctree::
.. :maxdepth: 1

Task reference
==============

.. _lsst.cp.verify-pipeline-tasks:

Pipeline tasks
--------------

.. lsst-pipelinetasks::
:root: lsst.cp.verify

.. _lsst.cp.verify-command-line-tasks:

Python API reference
====================

.. automodapi:: lsst.cp.verify
:no-main-docstr:
:no-inheritance-diagram:
8 changes: 8 additions & 0 deletions doc/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
# Documentation manifest.

# Name of this package
# Also the name of the package documentation subdirectory.
# package: "cp_pipe"

# List of names of Python modules in this package.
# For each module there is a corresponding module doc subdirectory.
modules:
- "lsst.cp.verify"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ max-doc-length = 79
ignore = E133, E226, E228, N802, N803, N806, N812, N813, N815, N816, W503
exclude =
bin,
doc,
doc/conf.py,
**/*/__init__.py,
**/*/version.py,
tests/.tests
Expand Down
2 changes: 0 additions & 2 deletions ups/cp_verify.build

This file was deleted.

27 changes: 0 additions & 27 deletions ups/cp_verify.cfg

This file was deleted.

4 changes: 0 additions & 4 deletions ups/cp_verify.table
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,4 @@ setupRequired(pipe_base)
setupRequired(pipe_tasks)
setupRequired(utils)

envPrepend(DYLD_LIBRARY_PATH, ${PRODUCT_DIR}/lib)
envPrepend(LSST_LIBRARY_PATH, ${PRODUCT_DIR}/lib)
envPrepend(LD_LIBRARY_PATH, ${PRODUCT_DIR}/lib)
envPrepend(PYTHONPATH, ${PRODUCT_DIR}/python)
envPrepend(PATH, ${PRODUCT_DIR}/bin)