We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f532e7 commit bf7997cCopy full SHA for bf7997c
test/test_extractor.py
@@ -146,8 +146,9 @@ class TestExtractFileCab(TestExtractorBase):
146
def setup_method(self):
147
download_file(VMWARE_CAB, os.path.join(self.tempdir, "test.cab"))
148
149
- @unittest.skipUnless(
150
- os.getenv("ACTIONS") != "1", "Skipping tests that cannot pass in github actions"
+ @pytest.mark.skipif(
+ os.getenv("ACTIONS") == "1",
151
+ reason="Skipping tests that cannot pass in github actions",
152
)
153
@pytest.mark.asyncio
154
async def test_extract_file_cab(self):
0 commit comments