File tree Expand file tree Collapse file tree 4 files changed +59
-2
lines changed Expand file tree Collapse file tree 4 files changed +59
-2
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,13 @@ cache:
14
14
- $HOME/.cache # cython cache
15
15
- $HOME/.ccache # compiler cache
16
16
17
+ env :
18
+ global :
19
+ # create a github personal access token
20
+ # cd pandas-dev/pandas
21
+ # travis encrypt 'PANDAS_GH_TOKEN=personal_access_token' -r pandas-dev/pandas
22
+ - secure : " EkWLZhbrp/mXJOx38CHjs7BnjXafsqHtwxPQrqWy457VDFWhIY1DMnIR/lOWG+a20Qv52sCsFtiZEmMfUjf0pLGXOqurdxbYBGJ7/ikFLk9yV2rDwiArUlVM9bWFnFxHvdz9zewBH55WurrY4ShZWyV+x2dWjjceWG5VpWeI6sA="
23
+
17
24
git :
18
25
# for cloning
19
26
depth : 1500
Original file line number Diff line number Diff line change
1
+ name : pandas
2
+ channels :
3
+ - defaults
4
+ - conda-forge
5
+ dependencies :
6
+ - beautifulsoup4
7
+ - bottleneck
8
+ - cython>=0.28.2
9
+ - fastparquet
10
+ - gitpython
11
+ - html5lib
12
+ - hypothesis>=3.58.0
13
+ - ipykernel
14
+ - ipython
15
+ - ipywidgets
16
+ - lxml
17
+ - matplotlib
18
+ - nbconvert
19
+ - nbformat
20
+ - nbsphinx
21
+ - notebook
22
+ - numexpr
23
+ - numpy=1.13*
24
+ - openpyxl
25
+ - pandoc
26
+ - pyarrow
27
+ - pyqt
28
+ - pytables
29
+ - python-dateutil
30
+ - python-snappy
31
+ - python=3.6*
32
+ - pytz
33
+ - scipy
34
+ - seaborn
35
+ - sphinx
36
+ - sqlalchemy
37
+ - statsmodels
38
+ - xarray
39
+ - xlrd
40
+ - xlsxwriter
41
+ - xlwt
42
+ # universal
43
+ - pytest
44
+ - pytest-xdist
Original file line number Diff line number Diff line change 23
23
export PYTHONHASHSEED=$( python -c ' import random; print(random.randint(1, 4294967295))' )
24
24
echo PYTHONHASHSEED=$PYTHONHASHSEED
25
25
26
- if [ " $COVERAGE " ]; then
26
+ if [ " $DOC " ]; then
27
+ echo " We are not running pytest as this is a doc-build"
28
+
29
+ elif [ " $COVERAGE " ]; then
27
30
echo pytest -s -n 2 -m " not single" --durations=10 --cov=pandas --cov-report xml:/tmp/cov-multiple.xml --junitxml=test-data-multiple.xml --strict $TEST_ARGS pandas
28
31
pytest -s -n 2 -m " not single" --durations=10 --cov=pandas --cov-report xml:/tmp/cov-multiple.xml --junitxml=test-data-multiple.xml --strict $TEST_ARGS pandas
29
32
Original file line number Diff line number Diff line change @@ -22,7 +22,10 @@ if echo "$TEST_ARGS" | grep -e --skip-network -q; then
22
22
export http_proxy=http://1.2.3.4 https_proxy=http://1.2.3.4;
23
23
fi
24
24
25
- if [ " $COVERAGE " ]; then
25
+ if [ " $DOC " ]; then
26
+ echo " We are not running pytest as this is a doc-build"
27
+
28
+ elif [ " $COVERAGE " ]; then
26
29
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
27
30
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
31
else
You can’t perform that action at this time.
0 commit comments