Skip to content

Commit 2998540

Browse files
ci: Update pytest flags: verbosity + summary (acts-project#4229)
1 parent 6295bb3 commit 2998540

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
source build/this_acts_withdeps.sh
160160
python3 -m pip install -r Examples/Python/tests/requirements.txt
161161
python3 -m pip install pytest-md-report
162-
pytest -rFv -k "not exatrkx"
162+
pytest -rfExw -k "not exatrkx" -v
163163
cat ${PYTEST_MD_REPORT_OUTPUT} >> $GITHUB_STEP_SUMMARY
164164
165165
linux_physmon:

.gitlab-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,8 @@ test_exatrkx_python:
229229
- which python3
230230
- python3 --version
231231
- python3 -c "import acts"
232-
- pytest -rFv -k torch --collect-only
233-
- pytest -rFv -k gpu # For now only test torch GPU pipeline
232+
- pytest -rfExw -k torch -v --collect-only
233+
- pytest -rFExw -k gpu -v # For now only test torch GPU pipeline
234234

235235
after_script:
236236
- !reference [.spack_cleanup, after_script]
@@ -355,7 +355,7 @@ linux_test_examples:
355355
- source build/this_acts_withdeps.sh
356356
- cd src
357357
- python3 -m pip install -r Examples/Python/tests/requirements.txt
358-
- pytest -rFv -k "not exatrkx"
358+
- pytest -rfExw -k "not exatrkx" -v
359359

360360
after_script:
361361
- !reference [.spack_cleanup, after_script]

Examples/Algorithms/GeneratorsPythia8/ActsExamples/Generators/Pythia8ProcessGenerator.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,13 @@ Pythia8Generator::~Pythia8Generator() {
107107
m_impl->m_hepMC3Writer->close();
108108
}
109109

110-
ACTS_INFO("Pythia8Generator produced "
111-
<< m_impl->m_pythia8RndmEngine->statistics.numUniformRandomNumbers
112-
<< " uniform random numbers");
113-
ACTS_INFO(" first = "
114-
<< m_impl->m_pythia8RndmEngine->statistics.first);
115-
ACTS_INFO(" last = "
116-
<< m_impl->m_pythia8RndmEngine->statistics.last);
110+
ACTS_DEBUG("Pythia8Generator produced "
111+
<< m_impl->m_pythia8RndmEngine->statistics.numUniformRandomNumbers
112+
<< " uniform random numbers");
113+
ACTS_DEBUG(" first = "
114+
<< m_impl->m_pythia8RndmEngine->statistics.first);
115+
ACTS_DEBUG(" last = "
116+
<< m_impl->m_pythia8RndmEngine->statistics.last);
117117
}
118118

119119
std::shared_ptr<HepMC3::GenEvent> Pythia8Generator::operator()(

0 commit comments

Comments
 (0)