Skip to content

Commit 92a3921

Browse files
Moving scripts unit tests to azure
1 parent e353e8a commit 92a3921

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

azure-pipelines.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,11 @@ jobs:
9999
displayName: 'Docstring validation'
100100
condition: true
101101
102+
- script: |
103+
pytest --capture=no --strict scripts
104+
displayName: 'Testing docstring validaton script'
105+
condition: true
106+
102107
- script: |
103108
export PATH=$HOME/miniconda3/bin:$PATH
104109
source activate pandas-dev

ci/script_single.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ fi
2525
if [ "$COVERAGE" ]; then
2626
echo pytest -s -m "single" --durations=10 --strict --cov=pandas --cov-report xml:/tmp/cov-single.xml --junitxml=test-data-single.xml $TEST_ARGS pandas
2727
pytest -s -m "single" --durations=10 --strict --cov=pandas --cov-report xml:/tmp/cov-single.xml --junitxml=test-data-single.xml $TEST_ARGS pandas
28-
echo pytest -s --strict scripts
29-
pytest -s --strict scripts
3028
else
3129
echo pytest -m "single" --durations=10 --junitxml=test-data-single.xml --strict $TEST_ARGS pandas
3230
pytest -m "single" --durations=10 --junitxml=test-data-single.xml --strict $TEST_ARGS pandas

0 commit comments

Comments
 (0)