Skip to content

Commit

Permalink
Changes for CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Jan 14, 2024
1 parent 386c03d commit 0b0265f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/encryption/aes_decrypter.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# -*- coding: utf-8 -*-
"""Tests for the AES decrypter object."""

import platform
import unittest

from dfvfs.encryption import aes_decrypter
Expand All @@ -11,6 +12,7 @@
from tests.encryption import test_lib


@unittest.skipIf(platform.system() == 'Windows', 'requires AES support')
class AESDecrypterTestCase(test_lib.DecrypterTestCase):
"""Tests for the AES decrypter object."""

Expand Down
2 changes: 2 additions & 0 deletions tests/encryption/blowfish_decrypter.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# -*- coding: utf-8 -*-
"""Tests for the Blowfish decrypter object."""

import platform
import unittest

from dfvfs.encryption import blowfish_decrypter
Expand All @@ -11,6 +12,7 @@
from tests.encryption import test_lib


@unittest.skipIf(platform.system() == 'Windows', 'requires Blowfish support')
class BlowfishDecrypterTestCase(test_lib.DecrypterTestCase):
"""Tests for the Blowfish decrypter object."""

Expand Down
2 changes: 2 additions & 0 deletions tests/encryption/des3_decrypter.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# -*- coding: utf-8 -*-
"""Tests for the triple DES decrypter object."""

import platform
import unittest

from dfvfs.encryption import des3_decrypter
Expand All @@ -11,6 +12,7 @@
from tests.encryption import test_lib


@unittest.skipIf(platform.system() == 'Windows', 'requires tripple DES support')
class DES3DecrypterTestCase(test_lib.DecrypterTestCase):
"""Tests for the triple DES decrypter object."""

Expand Down
2 changes: 2 additions & 0 deletions tests/encryption/rc4_decrypter.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# -*- coding: utf-8 -*-
"""Tests for the RC4 decrypter object."""

import platform
import unittest

from dfvfs.encryption import rc4_decrypter
Expand All @@ -10,6 +11,7 @@
from tests.encryption import test_lib


@unittest.skipIf(platform.system() == 'Windows', 'requires RC4 support')
class RC4DecrypterTestCase(test_lib.DecrypterTestCase):
"""Tests for the RC4 decrypter object."""

Expand Down

0 comments on commit 0b0265f

Please sign in to comment.