We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 073a4f5 commit e1c24f7Copy full SHA for e1c24f7
.travis.yml
@@ -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
@@ -9,7 +9,7 @@
'lxml>=3.2.5',
]
11
12
-TEST_REQUIRES = [
+TESTS_REQUIRE = [
13
'httpretty>=0.8.8',
14
'pytest>=2.7.0',
15
@@ -42,6 +42,6 @@ def read(fname):
42
'Natural Language :: English',
43
],
44
test_suite='dataverse/test',
45
- tests_require=TEST_REQUIRES,
+ tests_require=TESTS_REQUIRE,
46
cmdclass={'test': unittest}
47
)
0 commit comments