Skip to content

Commit a862508

Browse files
committed
go for green
1 parent 6ed4572 commit a862508

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/python-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
run: |
9898
call micromamba activate test
9999
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
101101
shell: cmd /C call {0}
102102

103103
- name: Build Version

ci/code_checks.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
6767

6868
MSG='Doctests' ; echo $MSG
6969
# 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"])'
7171
RET=$(($RET + $?)) ; echo $MSG "DONE"
7272

7373
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"])'
7575
RET=$(($RET + $?)) ; echo $MSG "DONE"
7676

7777
fi

0 commit comments

Comments
 (0)