Skip to content

Commit 796abdc

Browse files
committed
TST: add system python versions to travis
The reason is that nox isn't playing nice with conda. "Could not find _remove_dead_weakref"
1 parent d9d5bde commit 796abdc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
sudo: false
22

33
language: python
4+
python:
5+
- "2.7"
6+
- "3.5"
7+
- "3.6"
48

59
env:
610
- PYTHON=2.7 PANDAS=0.19.2 COVERAGE='false' LINT='true'
@@ -44,5 +48,5 @@ script:
4448
pip install coverage pytest pytest-cov codecov ;
4549
pytest -v --cov=pandas_gbq --cov-report xml:/tmp/pytest-cov.xml pandas_gbq ;
4650
fi
47-
- if [[ $COVERAGE == 'true' ]]; then nox -s coverage ; fi
51+
- if [[ $COVERAGE == 'true' ]]; then nox -s cover ; fi
4852
- if [[ $LINT == 'true' ]]; then nox -s lint ; fi

0 commit comments

Comments
 (0)