Skip to content

Commit

Permalink
Skip mesh calculator test on CI
Browse files Browse the repository at this point in the history
This test is fragile and fails > 50% of the time
  • Loading branch information
nyalldawson committed Dec 11, 2019
1 parent 73ca958 commit b613830
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/src/app/testqgsmeshcalculatordialog.cpp
Expand Up @@ -81,6 +81,9 @@ void TestQgsMeshCalculatorDialog::cleanupTestCase()

void TestQgsMeshCalculatorDialog::testCalc()
{
if ( !QgsTest::runFlakyTests() )
QSKIP( "This test is disabled on Travis CI environment" );

std::unique_ptr< QgsMeshCalculatorDialog > dialog( new QgsMeshCalculatorDialog( mpMeshLayer ) );

int groupCount = mpMeshLayer->dataProvider()->datasetGroupCount();
Expand Down

1 comment on commit b613830

@nyalldawson
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ping @PeterPetrik can you investigate this? It's failing more often then not on Travis

Please sign in to comment.