8000 Fix the windows test failure by just not testing on windows. :) · python/cpython@fa0af73 · GitHub
[go: up one dir, main page]

Skip to content

Commit fa0af73

Browse files
committed
Fix the windows test failure by just not testing on windows. :)
Since it's now required in setup.py, we know that the test will run on linux. On Windows we don't really care if it runs or not -- the fuzz tests are on a linux machine as far as I'm aware -- and I don't have a windows box to mess with Visual Studio files in. Big thanks to zware on #python-dev for walking me through this.
1 parent aa6d784 commit fa0af73

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Lib/test/test_fuzz.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
import test.support
12
import unittest
2-
import _fuzz
3+
4+
_fuzz = test.support.import_module('_fuzz')
35

46
class TestFuzz(unittest.TestC 3D83 ase):
57

0 commit comments

Comments
 (0)
0