Skip to content

Commit

Permalink
Skip test for minimal
Browse files Browse the repository at this point in the history
  • Loading branch information
prisae committed May 31, 2023
1 parent 367ac40 commit ee4669c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ def test_main(script_runner):
assert "* ERROR :: Config file not found: " in ret.stderr


# Skip test for 3.7, it fails. Not sure why.
# Skip test for minimal, it fails. Not sure why.
# Something multiprocessing/numba/sem_open/synchronization primitives.
@disable_numba()
@pytest.mark.script_launch_mode('subprocess')
@pytest.mark.skipif(sys.version_info < (3, 8), reason="Exclude for Python 3.7")
@pytest.mark.skipif(sys.version_info < (3, 9), reason="Exclude for Python 3.8")
def test_main2(script_runner):

# Test emg3d/__main__.py by calling the folder emg3d.
Expand Down

0 comments on commit ee4669c

Please sign in to comment.