File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 97
97
run : |
98
98
call micromamba activate test
99
99
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
100
- python -m pip install . --no-build-isolation -v
100
+ python -m pip install -ve . --no-build-isolation
101
101
shell : cmd /C call {0}
102
102
103
103
- name : Build Version
Original file line number Diff line number Diff line change @@ -67,11 +67,11 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
67
67
68
68
MSG=' Doctests' ; echo $MSG
69
69
# Ignore test_*.py files or else the unit tests will run
70
- python -m pytest --doctest-modules --ignore-glob=" **/test_*.py" pandas
70
+ python -c ' import pandas as pd; pd.test(extra_args=[" --doctest-modules", " --ignore-glob=**/test_*.py"]) '
71
71
RET=$(( $RET + $? )) ; echo $MSG " DONE"
72
72
73
73
MSG=' Cython Doctests' ; echo $MSG
74
- python -m pytest --doctest-cython pandas/_libs
74
+ python -c ' import pandas as pd; pd.test(extra_args=[" --doctest-cython", "--ignore-glob=**/test_*.py"]) '
75
75
RET=$(( $RET + $? )) ; echo $MSG " DONE"
76
76
77
77
fi
You can’t perform that action at this time.
0 commit comments