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-22182: Hide the doxygen build directories from pytest #74

Merged
merged 1 commit into from
Nov 13, 2019
Merged
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
4 changes: 4 additions & 0 deletions python/lsst/sconsUtils/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,10 @@ def runPythonTests(self, pyList):
interpreter += " --junit-prefix={0}".format(self.junitPrefix())
interpreter += self._getPytestCoverageCommand()

# Ignore doxygen build directories since they can confuse pytest
# test collection
interpreter += " --ignore=doc/html --ignore=doc/xml"

target = os.path.join(self._tmpDir, "pytest-{}.xml".format(self._env['eupsProduct']))

# Work out how many jobs scons has been configured to use
Expand Down