From 93b3e63eeb8acdb877348d909cd6055991a86407 Mon Sep 17 00:00:00 2001 From: pshriwise Date: Wed, 26 Sep 2018 10:19:15 -0500 Subject: [PATCH] Updating skip condition for dagmc test. --- tests/regression_tests/cad/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/regression_tests/cad/test.py b/tests/regression_tests/cad/test.py index 4ae75ff766..8c54bec184 100644 --- a/tests/regression_tests/cad/test.py +++ b/tests/regression_tests/cad/test.py @@ -3,8 +3,8 @@ import os import pytest pytestmark = pytest.mark.skipif( - os.environ.get('CAD') != 'y', - reason="CAD build is not enabled.") + os.environ.get('DAGMC') != 'y', + reason="DAGMC CAD geometry is not enabled.") def test_cad(): harness = CADTestHarness('statepoint.15.h5')