Skip to content

Commit 9e34037

Browse files
Adding conda environment to run scripts tests, and changing verbosity of doctests
1 parent 92a3921 commit 9e34037

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

azure-pipelines.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ jobs:
100100
condition: true
101101
102102
- script: |
103+
export PATH=$HOME/miniconda3/bin:$PATH
104+
source activate pandas-dev
103105
pytest --capture=no --strict scripts
104106
displayName: 'Testing docstring validaton script'
105107
condition: true

ci/code_checks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
184184
RET=$(($RET + $?)) ; echo $MSG "DONE"
185185

186186
MSG='Doctests generic.py' ; echo $MSG
187-
pytest -v --doctest-modules pandas/core/generic.py \
187+
pytest -q --doctest-modules pandas/core/generic.py \
188188
-k"-_set_axis_name -_xs -describe -droplevel -groupby -interpolate -pct_change -pipe -reindex -reindex_axis -to_json -transpose -values -xs -to_clipboard"
189189
RET=$(($RET + $?)) ; echo $MSG "DONE"
190190

0 commit comments

Comments
 (0)