Skip to content

Commit f013e78

Browse files
committed
TST: fix travis bash syntax
1 parent 7932b2d commit f013e78

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ install:
4040
- python setup.py install
4141

4242
script:
43-
- if [[ $PYTHON== '2.7' ]]; then nox -s test27 ; fi
44-
- if [[ $PYTHON== '3.5' ]]; then nox -s test35 ; fi
45-
- if [[ $PYTHON== '3.6' && "$PANDAS" == "MASTER" ]]; then nox -s test36master ; fi
43+
- if [[ $PYTHON == '2.7' ]]; then nox -s test27 ; fi
44+
- if [[ $PYTHON == '3.5' ]]; then nox -s test35 ; fi
45+
- if [[ $PYTHON == '3.6' ]] && [[ "$PANDAS" == "MASTER" ]]; then nox -s test36master ; fi
4646
- if [ -f "$REQ.conda" ]; then pip install coverage pytest pytest-cov codecov ; pytest -v --cov=pandas_gbq --cov-report xml:/tmp/pytest-cov.xml pandas_gbq ; fi
4747
- if [[ $COVERAGE == 'true' ]]; then nox -s coverage ; fi
4848
- if [[ $LINT == 'true' ]]; then nox -s lint ; fi

0 commit comments

Comments
 (0)