File tree 1 file changed +1
-12
lines changed
1 file changed +1
-12
lines changed Original file line number Diff line number Diff line change 5
5
# https://github.com/pytest-dev/pytest/issues/1075
6
6
export PYTHONHASHSEED=$( python -c ' import random; print(random.randint(1, 4294967295))' )
7
7
8
- if [ -n " $LOCALE_OVERRIDE " ]; then
9
- export LC_ALL=" $LOCALE_OVERRIDE "
10
- export LANG=" $LOCALE_OVERRIDE "
11
- PANDAS_LOCALE=` python -c ' import pandas; pandas.get_option("display.encoding")' `
12
- if [[ " $LOCALE_OVERRIDE " != " $PANDAS_LOCALE " ]]; then
13
- echo " pandas could not detect the locale. System locale: $LOCALE_OVERRIDE , pandas detected: $PANDAS_LOCALE "
14
- # TODO Not really aborting the tests until https://github.com/pandas-dev/pandas/issues/23923 is fixed
15
- # exit 1
16
- fi
17
- fi
18
-
19
8
if [[ " not network" == * " $PATTERN " * ]]; then
20
9
export http_proxy=http://1.2.3.4 https_proxy=http://1.2.3.4;
21
10
fi
47
36
if [[ " $COVERAGE " && $? == 0 && " $TRAVIS_BRANCH " == " master" ]]; then
48
37
echo " uploading coverage"
49
38
echo " bash <(curl -s https://codecov.io/bash) -Z -c -F $TYPE -f $COVERAGE_FNAME "
50
- bash <( curl -s https://codecov.io/bash) -Z -c -F $TYPE - f $COVERAGE_FNAME
39
+ bash <( curl -s https://codecov.io/bash) -Z -c -f $COVERAGE_FNAME
51
40
fi
You can’t perform that action at this time.
0 commit comments