Skip to content

Commit ea034a7

Browse files
committed
Merge pull request pydata#1 from hayd/travis
Travis
2 parents 0943292 + ff859b3 commit ea034a7

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.travis.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
language: python
22

33
env:
4-
- PYTHON=2.6 PANDAS=v0.13.1
5-
- PYTHON=2.7 PANDAS=v0.15.1
6-
- PYTHON=3.3 PANDAS=v0.14.1
7-
- PYTHON=3.4 PANDAS=v0.15.1
4+
- PYTHON=2.6 PANDAS=0.13.1
5+
- PYTHON=2.7 PANDAS=0.15.1
6+
- PYTHON=3.3 PANDAS=0.14.1
7+
- PYTHON=3.4 PANDAS=0.15.1
88

99
install:
1010
- sudo apt-get update
@@ -26,12 +26,13 @@ install:
2626
- conda info -a
2727

2828
# Replace dep1 dep2 ... with your dependencies
29-
- conda create -q -n test-environment python=$PYTHON pandas=$PANDAS
29+
- conda create -q -n test-environment python=$PYTHON pandas=$PANDAS nose coverage
3030
- source activate test-environment
31+
- conda list
3132
- python setup.py install
3233

3334
script:
34-
- py.test --cov pandas_data_readers -v --cov-report term-missing
35+
- nosetests --with-coverage --cover-package=pandas_data_readers
3536

3637
after_success:
3738
- coveralls

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Extracting pandas.io files so they're available to multiple version of pandas.

0 commit comments

Comments
 (0)