You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PR #170 added tests that are skipped if run in parallel. This breaks the tests and the docker nightly integration tests as the EXTRA_FLAGS='--disallow_skipped' is set.
# we skip parallel tests for nowifnottrainandself.N_PROCS>1:
self.skipTest("Skipping the parallel test for now.")
Steps to reproduce issue
Run tests with testflo -v -n 1 --disallow_skipped
Current behavior
The tests that are skipped are the following:
The following tests were skipped:
test_DVGeometryESP.py:TestPyGeoESP_BasicCube_1_parallel_4procs.test_composite
test_DVGeometryVSP.py:RegTestPyGeoVSP_1_parallel_4procs.test_2
test_DVGeometryVSP.py:RegTestPyGeoVSP_1_parallel_4procs.test_3
Expected behavior
No tests should be skipped
Code versions
Current mdolab/private:u20-gcc-ompi-stable docker image
Possible solution
Two options
If there is no need for a parallel run, then remove test_params and define N_PROCS = 1
Remove the if check and allow running in parallel.
The text was updated successfully, but these errors were encountered:
Description
PR #170 added tests that are skipped if run in parallel. This breaks the tests and the docker nightly integration tests as the
EXTRA_FLAGS='--disallow_skipped'
is set.The tests have parallel tests defined, e.g.,
but they also have,
Steps to reproduce issue
Run tests with
testflo -v -n 1 --disallow_skipped
Current behavior
The tests that are skipped are the following:
Expected behavior
No tests should be skipped
Code versions
Current
mdolab/private:u20-gcc-ompi-stable
docker imagePossible solution
Two options
test_params
and defineN_PROCS = 1
if
check and allow running in parallel.The text was updated successfully, but these errors were encountered: