Skip to content

Commit

Permalink
Skip Jupyter test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
t-sommer committed Jan 28, 2021
1 parent 15e117a commit 167def6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_jupyter_notebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
import unittest
from subprocess import check_call
from fmpy.util import download_test_file, create_jupyter_notebook
import os


@unittest.skipIf(sys.version_info[0] < 3, "Python 2.7 supported on CI")
@unittest.skipIf(sys.version_info[0] < 3 or os.name == 'nt', "Python 2.7 not supported on CI and hangs on Windows")
class JupyterNotebookTest(unittest.TestCase):
""" Test the Jupyter Notebook generation """

Expand Down

0 comments on commit 167def6

Please sign in to comment.