Skip to content

Commit e1c24f7

Browse files
committed
Add .travis.yml
1 parent 073a4f5 commit e1c24f7

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: python
2+
python:
3+
- 2.6
4+
- 2.7
5+
- 3.3
6+
- 3.4
7+
install:
8+
- pip install -U .
9+
script:
10+
- py.test

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
'lxml>=3.2.5',
1010
]
1111

12-
TEST_REQUIRES = [
12+
TESTS_REQUIRE = [
1313
'httpretty>=0.8.8',
1414
'pytest>=2.7.0',
1515
]
@@ -42,6 +42,6 @@ def read(fname):
4242
'Natural Language :: English',
4343
],
4444
test_suite='dataverse/test',
45-
tests_require=TEST_REQUIRES,
45+
tests_require=TESTS_REQUIRE,
4646
cmdclass={'test': unittest}
4747
)

0 commit comments

Comments
 (0)