Skip to content

Commit

Permalink
test2
Browse files Browse the repository at this point in the history
  • Loading branch information
babenek committed Nov 30, 2024
1 parent d7e5e6c commit 19c0c8f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest ]
python-version: [ "3.11", "3.12"]
os: [ windows-latest ]
python-version: [ "3.12"]
# exclude:
# # exclude py3.12 for windows latest due UserWarning: Unsupported Windows version (2022server). ONNX Runtime supports Windows 10 and above, only.
# - os: windows-latest
Expand Down
4 changes: 3 additions & 1 deletion tests/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@

class TestApp(TestCase):

def setUp(self):
self.maxDiff = None

@staticmethod
def _m_credsweeper(args) -> Tuple[str, str]:
proc = subprocess.Popen(
Expand Down Expand Up @@ -325,7 +328,6 @@ def test_help_p(self) -> None:
else:
text = ' '.join([text, line])
expected = " ".join(text.split())
self.maxDiff = None
self.assertEqual(expected, output)

# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
Expand Down

0 comments on commit 19c0c8f

Please sign in to comment.