Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Analysis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LHCb
Analysis
Merge requests
!1029
Make CTest do not truncate pytest output
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Make CTest do not truncate pytest output
erodrigu-coverage-printout
into
master
Overview
6
Commits
1
Pipelines
2
Changes
1
All threads resolved!
Hide all comments
Merged
Eduardo Rodrigues
requested to merge
erodrigu-coverage-printout
into
master
1 year ago
Overview
6
Commits
1
Pipelines
2
Changes
1
All threads resolved!
Hide all comments
Expand
As per our exchanges - thank you
@clemenci
for the tip :+1.
See also
gaudi/Gaudi#261
.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
ddfdf0e8
1 commit,
1 year ago
1 file
+
15
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Phys/FunTuple/tests/conftest.py
0 → 100644
+
15
−
0
Options
###############################################################################
# (c) Copyright 2023 CERN for the benefit of the LHCb Collaboration #
# #
# This software is distributed under the terms of the GNU General Public #
# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". #
# #
# In applying this licence, CERN does not waive the privileges and immunities #
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
###############################################################################
def
pytest_report_header
(
config
):
"""
Make sure CTest does not truncate the output.
"""
return
"
CTEST_FULL_OUTPUT
"
Loading