Skip to content
This repository was archived by the owner on May 3, 2023. It is now read-only.

Commit fde33a7

Browse files
committed
debug
1 parent 3d2ffe9 commit fde33a7

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

foo.patch

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
diff --git a/pandas/tests/test_downstream.py b/pandas/tests/test_downstream.py
2-
index e76315299..9be107f9c 100644
2+
index 9fe8b0f95..9be107f9c 100644
33
--- a/pandas/tests/test_downstream.py
44
+++ b/pandas/tests/test_downstream.py
5-
@@ -139,7 +139,19 @@ def test_missing_required_dependency():
6-
# -S : disable site-packages
7-
# -s : disable user site-packages
8-
# -E : disable PYTHON* env vars, especially PYTHONPATH
9-
- call = ['python', '-S', '-s', '-E', '-c', 'import pandas']
5+
@@ -135,8 +135,23 @@ def test_pyarrow(df):
6+
7+
def test_missing_required_dependency():
8+
# GH 23868
9+
- # use the -S flag to disable site-packages
10+
- call = ['python', '-S', '-c', 'import pandas']
11+
+ # To ensure proper isolation, we pass these flags
12+
+ # -S : disable site-packages
13+
+ # -s : disable user site-packages
14+
+ # -E : disable PYTHON* env vars, especially PYTHONPATH
1015
+ # And, that's apparently not enough, so we give up.
1116
+ # https://github.com/MacPython/pandas-wheels/pull/50
1217
+ try:

0 commit comments

Comments
 (0)