Skip to content

Commit

Permalink
skip tensorflow dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
rasbt committed Mar 28, 2024
1 parent 48aab7d commit ebca143
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mlxtend/evaluate/tests/test_bootstrap_point632.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,10 @@ def test_scoring_proba():
APPVEYOR = False


@pytest.mark.skipif(TRAVIS or APPVEYOR, reason="TensorFlow dependency")
GITHUB_ACTIONS = os.getenv('GITHUB_ACTIONS_CI', 'false').lower() == 'true'


@pytest.mark.skipif(TRAVIS or APPVEYOR or GITHUB_ACTIONS, reason="TensorFlow dependency")
def test_keras_fitparams():
import tensorflow as tf

Expand Down

0 comments on commit ebca143

Please sign in to comment.