Skip to content

Commit

Permalink
Merge branch 'master-v1.5.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe-david committed Nov 14, 2023
2 parents a9c5e77 + aa516ea commit 78ad22a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/fastoad/openmdao/tests/test_whatsopt.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
import os
import os.path as pth
from shutil import rmtree

Expand All @@ -29,9 +28,9 @@ def cleanup():
rmtree(RESULTS_FOLDER_PATH, ignore_errors=True)


@pytest.mark.skipif(
str(os.environ.get("RUN_WEB_REQUESTS")).lower() not in ["true", "1", "t", "y", "yes"],
reason="Using web access during tests should not be the default behavior.",
@pytest.mark.skip(
reason="Using web access during tests should not be the default behavior. "
"Moreover, fastoad/cmd/tests/test_apy.py:test_write_xdsm dose a similar test."
)
def test_write_xdsm(cleanup):

Expand Down

0 comments on commit 78ad22a

Please sign in to comment.