Skip to content

Commit

Permalink
Disable mesh simplication 3d render test on CI
Browse files Browse the repository at this point in the history
It randomly renders a blank image

I suspect this is revealing deeper bugs in the 3d offscreen renderer,
but it fails locally for me too (and always has), so it's not caused
by the CI infrastructure move.

This warrants a deeper dive, but it needs to be done by someone
intimately familiar with Qt3D.
  • Loading branch information
nyalldawson committed Feb 8, 2021
1 parent fc2c397 commit 46a6eac
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/src/3d/testqgs3drendering.cpp
Expand Up @@ -691,6 +691,11 @@ void TestQgs3DRendering::testMapTheme()

void TestQgs3DRendering::testMesh()
{
if ( QgsTest::isCIRun() )
{
QSKIP( "Intermittently fails on CI" );
}

QgsRectangle fullExtent = mLayerMeshDataset->extent();

Qgs3DMapSettings *map = new Qgs3DMapSettings;
Expand Down

0 comments on commit 46a6eac

Please sign in to comment.