Skip to content

Commit

Permalink
Fix: Skip test all on windows since there is not enough space on disk…
Browse files Browse the repository at this point in the history
… to run SPICE.
  • Loading branch information
Labbeti committed Nov 15, 2023
1 parent 7a23b4f commit 5dd0572
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_all.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import platform
import unittest

from unittest import TestCase
Expand All @@ -10,6 +11,9 @@

class TestAll(TestCase):
def test_example_1(self) -> None:
if platform.system() == "Windows":
return None

cands: list[str] = ["a man is speaking", "rain falls"]
mrefs: list[list[str]] = [
[
Expand Down

0 comments on commit 5dd0572

Please sign in to comment.