Skip to content

Commit 520369d

Browse files
jrebackmaxim veksler
authored and
maxim veksler
committed
CI: move location of setting non-blocking IO (pandas-dev#19184)
1 parent d3aee98 commit 520369d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ matrix:
9595

9696
before_install:
9797
- echo "before_install"
98+
# set non-blocking IO on travis
99+
# https://github.com/travis-ci/travis-ci/issues/8920#issuecomment-352661024
100+
- python -c 'import os,sys,fcntl; flags = fcntl.fcntl(sys.stdout, fcntl.F_GETFL); fcntl.fcntl(sys.stdout, fcntl.F_SETFL, flags&~os.O_NONBLOCK);'
98101
- source ci/travis_process_gbq_encryption.sh
99102
- export PATH="$HOME/miniconda3/bin:$PATH"
100103
- df -h

ci/install_travis.sh

-3
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,6 @@ time conda create -n pandas --file=${REQ} || exit 1
101101

102102
source activate pandas
103103

104-
# https://github.com/travis-ci/travis-ci/issues/8920#issuecomment-352661024
105-
python -c "import fcntl; fcntl.fcntl(1, fcntl.F_SETFL, 0)"
106-
107104
# may have addtl installation instructions for this build
108105
echo
109106
echo "[build addtl installs]"

0 commit comments

Comments
 (0)