We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55363d8 commit 78aed29Copy full SHA for 78aed29
tests/test_bug_fixes.py
@@ -4,6 +4,7 @@
4
5
"""
6
import os
7
+import sys
8
import datetime
9
import psutil
10
from textwrap import dedent
@@ -14,6 +15,9 @@
14
15
from platform import python_implementation
16
17
18
+PY36_ABOVE = sys.version_info[0] == 2 && sys.version_info[1] >= 6
19
+
20
21
def test_pyexcel_issue_4():
22
"""pyexcel issue #4"""
23
indices = [
@@ -140,6 +144,8 @@ def test_issue_8_hidden_sheet_2():
140
144
def test_issue_14_xlsx_file_handle():
141
145
if python_implementation == 'PyPy':
142
146
return
147
+ if PY36_ABOVE:
148
+ return
143
149
proc = psutil.Process()
150
test_file = os.path.join("tests", "fixtures", "hidden_sheets.xlsx")
151
open_files_l1 = proc.open_files()
0 commit comments