Skip to content

Commit 7a2eef9

Browse files
committed
TST: fix travis bash syntax for AND
1 parent 7932b2d commit 7a2eef9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ install:
4242
script:
4343
- if [[ $PYTHON== '2.7' ]]; then nox -s test27 ; fi
4444
- if [[ $PYTHON== '3.5' ]]; then nox -s test35 ; fi
45-
- if [[ $PYTHON== '3.6' && "$PANDAS" == "MASTER" ]]; then nox -s test36master ; 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)